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

:root {
  --navy: #0F2B5B;
  --navy-light: #1A4A8A;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;

  /* ── TYPE SCALE ───────────────────────────────────
   * 5 semantic sizes + 1 for buttons/interactive elements.
   * --fs-heading-lg  section & page titles
   * --fs-heading     subheadings, archive titles, article H2
   * --fs-heading-sm  card titles, article H3, privacy H2
   * --fs-body        body copy, lead text, subtitles, excerpts
   * --fs-meta        labels, dates, nav, badges, footer, form notes
   * --fs-btn         buttons & button-like links
   * ─────────────────────────────────────────────── */
  --fs-heading-lg:  clamp(2.4rem, 5.5vw, 4rem);
  --fs-heading:     1.75rem;
  --fs-heading-sm:  1.35rem;
  --fs-body:        1.1rem;
  --fs-meta:        0.875rem;
  --fs-btn:         1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ─────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.2s;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-dot {
  color: var(--amber);
}

.header-nav {
  margin-left: auto;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}

/* Hover only on devices that support it (not touch) */
@media (hover: hover) {
  .nav-link:not(.nav-cta):hover {
    color: var(--navy);
    background: var(--gray-100);
  }
}

/* Active: filled navy pill */
.nav-link:not(.nav-cta).active {
  color: var(--white);
  background: var(--navy);
}

/* Kontakt — CTA button in nav */
.nav-cta {
  color: var(--white);
  background: var(--amber);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--amber-light);
}

.nav-cta.active {
  color: var(--white);
  background: var(--navy);
}

/* ── HAMBURGER TOGGLE ────────────────────────────── */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  color: var(--navy);
  transition: background 0.15s;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  background: none;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, top 0.25s;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after  { top:  7px; }

/* Animate to × when menu is open */
header.nav-open .nav-toggle-icon            { background: transparent; }
header.nav-open .nav-toggle-icon::before    { top: 0; transform: rotate(45deg); }
header.nav-open .nav-toggle-icon::after     { top: 0; transform: rotate(-45deg); }

/* ── NAV OVERLAY (mobile backdrop) ──────────────── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 43, 91, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 98;
}

.nav-overlay.open { display: block; }

/* ── MOBILE NAV ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header-nav {
    display: none;
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 12px 40px rgba(15, 43, 91, 0.12);
    z-index: 99;
  }

  .header-nav.open {
    display: flex;
  }

  .nav-link {
    font-size: var(--fs-body);
    padding: 0.875rem 1rem;
    border-radius: 8px;
  }

  .nav-link:not(.nav-cta).active {
    color: var(--white);
    background: var(--navy);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.875rem 1rem;
  }
}

/* ── WORKSHOP BADGE ──────────────────────────────── */
.workshop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  color: #92620a;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: var(--fs-meta);
  font-weight: 600;
  margin-bottom: 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  z-index: 1;
}

.workshop-badge:hover {
  background: rgba(245,158,11,0.18);
  border-color: rgba(245,158,11,0.5);
}

.workshop-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: min(100vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(160deg, #F0F4FF 0%, #FFFFFF 60%, #FFFBEB 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,43,91,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(4.2rem, 12vw, 8.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--amber);
}

.hero p.tagline {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--gray-600);
  max-width: min(520px, 88vw);
  margin: 0 auto 2.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-size: var(--fs-btn);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(15,43,91,0.25);
}

.cta-btn:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,43,91,0.3);
}

.cta-btn svg {
  width: 18px;
  height: 18px;
}

/* ── ABOUT ───────────────────────────────────────── */
.about {
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background: var(--gray-50);
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  gap: 5rem;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-name {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.about-role {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.about-bio {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.75;
}

.about-bio + .about-bio {
  margin-top: 1rem;
}

.about-photo {
  width: 460px;
  flex-shrink: 0;
}

.about-photo img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  object-position: center top;
  display: block;
  border-radius: 20px;
}

/* ── WORKSHOP ─────────────────────────────────────── */
.workshop {
  padding: 7rem clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(160deg, #0F2B5B 0%, #1A4A8A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.workshop::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.workshop-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.workshop-announce-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}

.workshop-announce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.workshop-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.workshop-lead {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.workshop-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 2.5rem;
}

.workshop-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-meta);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

.workshop-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--amber);
}

.workshop-pricing {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.workshop-price-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.5rem 2.25rem;
  min-width: 160px;
}

.workshop-price-featured {
  border-color: rgba(245,158,11,0.5);
  background: rgba(245,158,11,0.08);
}

.workshop-price-tag {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}

.workshop-price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.workshop-price-note {
  font-size: var(--fs-meta);
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

@media (max-width: 480px) {
  .workshop-pricing {
    flex-direction: column;
    align-items: center;
  }

  .workshop-price-card {
    width: 100%;
    max-width: 280px;
  }
}

/* ── WORKSHOP LIGHT VARIANT ───────────────────────── */
.workshop--light {
  background: var(--gray-50);
}
.workshop--light::before {
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
}
.workshop--light .workshop-title {
  color: var(--navy);
}
.workshop--light .workshop-lead {
  color: var(--gray-600);
}
.workshop--light .workshop-meta-item {
  color: var(--gray-500);
}
.workshop--light .workshop-price-card {
  background: var(--white);
  border-color: var(--gray-100);
}
.workshop--light .workshop-price-featured {
  border-color: rgba(245,158,11,0.4);
  background: rgba(245,158,11,0.05);
}
.workshop--light .workshop-price-amount {
  color: var(--navy);
}
.workshop--light .workshop-price-note {
  color: var(--gray-400);
}

/* ── EVENTS TEASER (embedded section) ─────────────── */
.events {
  padding: 7rem clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(160deg, #0F2B5B 0%, #1A4A8A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.events::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.events-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.events-announce-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.events-announce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.events-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
}

.events-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.events-title a:hover {
  color: var(--amber-light);
}

.events-lead {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.events-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 2.5rem;
}

.events-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-meta);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}

.events-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--amber);
}

/* ── Type badge (shared between teaser + page) ── */
.events-type-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.events-type-radionica {
  background: rgba(245,158,11,0.12);
  border-color: rgba(245,158,11,0.35);
  color: var(--amber);
}

.events-type-predavanje {
  background: rgba(99,179,237,0.12);
  border-color: rgba(99,179,237,0.35);
  color: #63B3ED;
}

.events-type-konferencija {
  background: rgba(167,139,250,0.12);
  border-color: rgba(167,139,250,0.35);
  color: #A78BFA;
}

.events-type-meetup {
  background: rgba(110,231,183,0.12);
  border-color: rgba(110,231,183,0.35);
  color: #6EE7B7;
}

.events-type-panel {
  background: rgba(244,114,182,0.12);
  border-color: rgba(244,114,182,0.35);
  color: #F472B6;
}

/* ── Next-up list inside teaser ── */
.events-upcoming {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

.events-upcoming-label {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 1.5rem;
}

.events-upcoming-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.events-upcoming-item {
  display: grid;
  grid-template-columns: 130px auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: var(--fs-meta);
}

.events-upcoming-date {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

.events-upcoming-title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.events-upcoming-title a {
  color: inherit;
  text-decoration: none;
}

.events-upcoming-title a:hover {
  color: var(--amber-light);
}

.events-upcoming-city {
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

@media (max-width: 640px) {
  .events-upcoming-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    text-align: left;
  }
  .events-upcoming-city::before {
    content: '· ';
  }
}

/* ── "View all" link below teaser ── */
.events-more {
  margin-top: 2.5rem;
}

.events-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber);
  font-size: var(--fs-btn);
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.events-more-link:hover {
  gap: 0.75rem;
  color: var(--amber-light);
}

.events-more-link svg {
  width: 18px;
  height: 18px;
}

/* ── Light variant (used on archive + article pages) ── */
.events--light {
  background: var(--gray-50);
}
.events--light::before {
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
}
.events--light .events-title {
  color: var(--navy);
}
.events--light .events-title a:hover {
  color: var(--amber);
}
.events--light .events-lead {
  color: var(--gray-600);
}
.events--light .events-meta-item {
  color: var(--gray-600);
}
.events--light .events-upcoming {
  border-top-color: var(--gray-100);
}
.events--light .events-upcoming-label {
  color: var(--gray-400);
}
.events--light .events-upcoming-item {
  background: var(--white);
  border-color: var(--gray-100);
}
.events--light .events-upcoming-date {
  color: var(--gray-600);
}
.events--light .events-upcoming-title {
  color: var(--navy);
}
.events--light .events-upcoming-title a:hover {
  color: var(--amber);
}
.events--light .events-upcoming-city {
  color: var(--gray-400);
}

/* ── EVENTS PAGE — list, tabs, cards ───────────────── */
.events-list-section {
  flex: 1;
  padding: 4rem 0 7rem;
  background: var(--white);
}

.events-list-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.events-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 3rem;
}

.events-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: none;
  padding: 1rem 0.25rem;
  margin-right: 1.5rem;
  font-family: inherit;
  font-size: var(--fs-btn);
  font-weight: 700;
  color: var(--gray-400);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

.events-tab:hover {
  color: var(--navy);
}

.events-tab.active {
  color: var(--navy);
  border-bottom-color: var(--amber);
}

.events-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.45rem;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.events-tab.active .events-tab-count {
  background: rgba(245,158,11,0.15);
  color: var(--amber);
}

.events-empty {
  padding: 4rem 0;
  text-align: center;
  color: var(--gray-400);
  font-size: var(--fs-body);
}

.events-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.event-card:not(.event-card--past):hover {
  border-color: rgba(245,158,11,0.4);
}

.events-cards--past .event-card {
  opacity: 0.92;
}

.event-card-aside {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  border-right: 1px solid var(--gray-100);
  padding-right: 2rem;
}

.event-card-date {
  font-size: var(--fs-meta);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.3;
}

.event-card-time {
  font-size: var(--fs-meta);
  color: var(--gray-600);
  font-weight: 500;
}

.event-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.event-card-title {
  font-size: var(--fs-heading-sm);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}

.event-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.event-card-title a:hover {
  color: var(--amber);
}

.event-card-where {
  font-size: var(--fs-meta);
  font-weight: 600;
  color: var(--gray-600);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-card-summary {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0.25rem 0 0;
}

.event-card-link {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: var(--fs-meta);
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.event-card-link:hover {
  color: var(--navy);
}

.event-locations {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.event-location {
  padding: 0.6rem 0;
  border-top: 1px solid var(--gray-100);
  font-size: var(--fs-meta);
  color: var(--gray-600);
  font-weight: 500;
}

.event-location:first-child {
  border-top: none;
}

.event-location-venue {
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 720px) {
  .event-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .event-card-aside {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
    padding-right: 0;
    padding-bottom: 1.25rem;
  }
}

/* ── SERVICES ─────────────────────────────────────── */
.services {
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: var(--white);
}

.services-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.section-label {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 2.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 32px rgba(245,158,11,0.12);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.service-card h3 {
  font-size: var(--fs-heading-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.65;
}

.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
}

.service-card.featured:hover {
  border-color: var(--amber);
  box-shadow: 0 8px 40px rgba(15,43,91,0.3);
}

.service-card.featured h3 {
  color: var(--white);
}

.service-card.featured p {
  color: rgba(255,255,255,0.65);
}

.service-card.featured .service-icon {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
}

.service-card.featured .service-icon svg {
  color: var(--amber);
}

.featured-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: var(--fs-meta);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

/* ── CTA SECTION ─────────────────────────────────── */
.cta-section {
  min-height: min(100vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem clamp(1.5rem, 6vw, 7rem);
  background: linear-gradient(160deg, #0F2B5B 0%, #1A4A8A 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245,158,11,0.07);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245,158,11,0.04);
  pointer-events: none;
}

.cta-label {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.cta-section h2 {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-body {
  color: rgba(255,255,255,0.65);
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.cta-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy);
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-size: var(--fs-btn);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(245,158,11,0.4);
}

.cta-btn-light:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.5);
}

.cta-btn-light svg {
  width: 18px;
  height: 18px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-btn);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.cta-btn-secondary:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.cta-btn-secondary svg {
  width: 16px;
  height: 16px;
}

/* ── META SECTION ───────────────────────────────── */
.meta-section {
  min-height: min(100vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem clamp(1.5rem, 6vw, 7rem);
  background: #FFFBEB;
  position: relative;
  overflow: hidden;
}

.meta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.meta-eyebrow {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.meta-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.meta-lead {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.meta-body {
  font-size: var(--fs-heading);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.meta-explanation {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.meta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.meta-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-600);
  font-size: var(--fs-btn);
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.meta-secondary-link:hover {
  color: var(--navy);
  background: rgba(14,20,58,0.04);
}

.meta-secondary-link svg {
  width: 16px;
  height: 16px;
}

/* ── STATS ───────────────────────────────────────── */
.stats {
  background: var(--gray-800);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.stats-heading {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 clamp(1.25rem, 3.5vw, 3.5rem);
  text-align: center;
}

.stats-number {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats-label {
  font-size: var(--fs-meta);
  font-weight: 500;
  color: var(--gray-400);
  white-space: nowrap;
}

.stats-divider {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.stats-details {
  width: 100%;
  max-width: 900px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.stats-details-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-meta);
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  list-style: none;
  justify-content: center;
  transition: color 0.2s;
  user-select: none;
}

.stats-details-toggle::-webkit-details-marker { display: none; }

.stats-details-toggle::after {
  content: '↓';
  font-size: 0.8rem;
  transition: transform 0.25s;
}

.stats-details[open] .stats-details-toggle {
  color: var(--amber);
}

.stats-details[open] .stats-details-toggle::after {
  transform: rotate(180deg);
}

.stats-details-toggle:hover {
  color: var(--white);
}

.stats-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.stats-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stats-detail-number {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}

.stats-detail-item p {
  font-size: var(--fs-meta);
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }

  .stats-divider {
    width: 3rem;
    height: 1px;
  }

  .stats-label {
    white-space: normal;
  }

  .stats-details-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

/* ── FOOTER ──────────────────────────────────────── */
footer {
  padding: 1.5rem 0;
  background: var(--gray-800);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-meta);
  color: var(--gray-400);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-name {
  color: var(--gray-400);
  font-weight: 600;
}

.footer-sep {
  color: var(--gray-600);
}

.footer-privacy {
  color: var(--gray-400);
  text-decoration: none;
}
.footer-privacy:hover { color: var(--amber); text-decoration: underline; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .about-inner {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }

  .about-photo {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .footer-sep {
    display: none;
  }
}

/* ── COOKIE CONSENT BANNER ──────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
}
.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  font-size: var(--fs-meta);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  min-width: 200px;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn-accept {
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-meta);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.85; }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-meta);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-decline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.cookie-privacy-link {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  white-space: nowrap;
}
.cookie-privacy-link:hover { color: var(--white); }

/* ── ARTICLES SECTION (homepage) ────────────────── */
.articles-section {
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background: var(--gray-50);
}

.articles-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.articles-grid-2 { grid-template-columns: repeat(2, 1fr); }
.articles-grid-3 { grid-template-columns: repeat(3, 1fr); }

.article-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15,43,91,0.1);
  border-color: rgba(15,43,91,0.15);
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-400);
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.article-card-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.article-card-title {
  font-size: var(--fs-heading-sm);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.article-card-excerpt {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.article-card-read {
  font-size: var(--fs-btn);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.02em;
}

.articles-more {
  margin-top: 2.5rem;
  text-align: center;
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--navy);
  border-radius: 100px;
  color: var(--navy);
  font-weight: 700;
  font-size: var(--fs-btn);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.cta-btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.cta-btn-outline svg {
  width: 18px;
  height: 18px;
}


/* Last content section grows to fill any remaining space before the footer */
/* archive-list-section already has flex:1; article-cta-section gets it here */

/* ── BACK LINK ──────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-meta);
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--navy); }
.back-link svg { width: 16px; height: 16px; }

/* ── ARCHIVE HERO ───────────────────────────────── */
.archive-hero {
  display: flex;
  align-items: flex-end;
  padding: clamp(6rem, 14vw, 10rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--navy);
}

.archive-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.archive-hero .section-label {
  color: var(--amber);
  opacity: 1;
}

.archive-hero-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0.5rem 0 1.25rem;
}

.archive-hero-subtitle {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── ARCHIVE LIST SECTION ───────────────────────── */
.archive-list-section {
  flex: 1;
  padding: 5rem 0 7rem;
  background: var(--white);
}

.archive-list-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.archive-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: inherit;
  transition: gap 0.2s;
}

.archive-item:first-child {
  border-top: 1px solid var(--gray-100);
}

.archive-item:hover {
  gap: 2.5rem;
}

.archive-item-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray-400);
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  flex-shrink: 0;
  min-width: 130px;
}

.archive-item-meta svg {
  width: 13px;
  height: 13px;
}

.archive-item-content {
  flex: 1;
}

.archive-item-title {
  font-size: var(--fs-heading);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.archive-item:hover .archive-item-title {
  color: var(--navy-light);
}

.archive-item-excerpt {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.6;
}

.archive-item-arrow {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: color 0.2s, transform 0.2s;
}

.archive-item-arrow svg {
  width: 20px;
  height: 20px;
  display: block;
}

.archive-item:hover .archive-item-arrow {
  color: var(--navy);
  transform: translateX(4px);
}

/* ── ARTICLE HERO ───────────────────────────────── */
.article-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(8rem, 13vw, 11rem) 0 clamp(5rem, 8vw, 7rem);
  background: var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.article-hero.has-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14, 20, 58, 1) 0%,
    rgba(14, 20, 58, 0) 100%
  );
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: flex-start;
}

.article-hero-content {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-hero:not(.has-image) .article-hero-inner {
  justify-content: flex-start;
}

.article-date {
  font-size: var(--fs-meta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.article-hero-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.article-hero-excerpt {
  font-size: var(--fs-body);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 750px;
}

.article-hero-credit {
  margin-top: 1.5rem;
  font-size: var(--fs-meta);
  color: rgba(255,255,255,0.4);
}
.article-hero-credit a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
}

/* Article cover image — 1200×630 px (1.91:1) recommended */
.article-cover {
  width: 100%;
  margin-bottom: 3rem;
}

.article-cover-img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.article-cover-credit {
  font-size: var(--fs-meta);
  color: var(--gray-400);
  text-align: left;
  margin-top: 0.4rem;
}
.article-cover-credit a {
  color: var(--gray-400);
  text-decoration: underline;
}

/* ── ARTICLE BODY SECTION ───────────────────────── */
.article-body-section {
  padding: 4rem 0;
  background: var(--white);
}

.article-body-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.article-body {
  max-width: 100%;
  font-size: var(--fs-body);
  line-height: 1.85;
  color: var(--gray-800);
}

.article-body h2 {
  font-size: var(--fs-heading);
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.article-body h3 {
  font-size: var(--fs-heading-sm);
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.5rem;
}

.article-body p { margin-bottom: 1.35rem; }
.article-body ul,
.article-body ol { margin: 0 0 1.35rem 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--navy); font-weight: 700; }
.article-body a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* ── ARTICLE LAYOUT (body + sidebar) ───────────── */
.article-layout {
  display: grid;
  grid-template-columns: 740px 1fr;
  gap: 4rem;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 6rem;
}

.article-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 1000px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
    border-top: 2px solid var(--gray-200);
    padding-top: 2rem;
  }
}

/* ── ARTICLE CTA SECTION ────────────────────────── */
.article-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--gray-50);
}

.article-cta-inner {
  max-width: 1000px;
  padding: 0 clamp(1rem, 3vw, 2rem);
  width: 100%;
}

.article-cta-inner h2 {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0.5rem 0 2rem;
  text-wrap: balance;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 640px) {
  .articles-grid,
  .articles-grid-2,
  .articles-grid-3 {
    grid-template-columns: 1fr;
  }
  .archive-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .archive-item-arrow { display: none; }
  .archive-item-meta { min-width: unset; }
}

/* ── PRIVACY PAGE ────────────────────────────────── */
.privacy-section {
  background: var(--white);
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
}
.privacy-inner {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-inner h1 {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.privacy-updated {
  font-size: var(--fs-meta);
  color: var(--gray-400);
  margin-bottom: 2.5rem;
}
.privacy-inner h2 {
  font-size: var(--fs-heading-sm);
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.privacy-inner p,
.privacy-inner li {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.7;
}
.privacy-inner ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.privacy-inner li { margin-bottom: 0.4rem; }
.privacy-inner a {
  color: var(--amber);
  text-decoration: underline;
}
.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1rem;
  font-size: var(--fs-meta);
}
.privacy-table th,
.privacy-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--gray-200, #e5e7eb);
  color: var(--gray-600);
  line-height: 1.5;
}
.privacy-table th {
  background: var(--gray-50, #f9fafb);
  font-weight: 600;
  color: var(--navy);
}
@media (max-width: 600px) {
  .privacy-table { font-size: var(--fs-meta); }
  .privacy-table th,
  .privacy-table td { padding: 0.5rem; }
}
.cookie-settings-box {
  background: var(--gray-50, #f9fafb);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-settings-status {
  flex: 1;
  margin: 0;
  font-size: var(--fs-body);
  color: var(--navy);
  min-width: 180px;
}
.cookie-settings-actions {
  display: flex;
  gap: 0.75rem;
}
.cookie-settings-actions button {
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: var(--fs-meta);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
  display: inline-flex;
  align-items: center;
}
.cookie-settings-actions #cookie-accept-btn {
  background: var(--amber);
  color: var(--navy);
  border: none;
}
.cookie-settings-actions #cookie-accept-btn:hover { opacity: 0.85; }
.cookie-settings-actions #cookie-revoke-btn {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.cookie-settings-actions #cookie-revoke-btn:hover { background: var(--navy); color: var(--white); }


/* ── CONTACT PAGE ────────────────────────────────── */
.contact-section {
  background: var(--white);
  padding: clamp(6rem, 10vw, 8rem) clamp(1rem, 4vw, 2rem) clamp(4rem, 6vw, 5rem);
}
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
}
.contact-intro {
  margin-bottom: 3rem;
}
.contact-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}
.contact-subtitle {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 560px;
}

/* Form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row--full { grid-column: 1 / -1; }
.form-row--submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.form-label {
  font-size: var(--fs-meta);
  font-weight: 600;
  color: var(--gray-700, #374151);
}
.form-required { color: var(--amber); }
.form-optional { font-weight: 400; color: var(--gray-400, #9CA3AF); }
.form-input {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200, #E5E7EB);
  border-radius: 8px;
  font-size: var(--fs-btn);
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,20,58,0.08);
}
.form-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: var(--fs-btn);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.contact-submit-btn:hover {
  background: var(--navy-light, #1a2260);
  transform: translateY(-1px);
}
.form-note {
  font-size: var(--fs-meta);
  color: var(--gray-400, #9CA3AF);
  margin: 0;
  line-height: 1.5;
}
.form-note a { color: var(--gray-400); text-decoration: underline; }

/* Calendly banner above the form */
.contact-calendly-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1.5px solid #FDE68A;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.contact-calendly-banner:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(245,158,11,0.18);
}
.contact-calendly-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--navy);
  border-radius: 10px;
}
.contact-calendly-icon svg { width: 22px; height: 22px; }
.contact-calendly-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  line-height: 1.5;
}
.contact-calendly-text strong {
  font-weight: 700;
  color: var(--navy);
  font-size: var(--fs-body);
}
.contact-calendly-text span {
  font-size: var(--fs-meta);
  color: var(--gray-600);
}
.contact-calendly-arrow {
  flex-shrink: 0;
  color: var(--navy);
  display: flex;
  align-items: center;
}
.contact-calendly-arrow svg { width: 20px; height: 20px; }
@media (max-width: 560px) {
  .contact-calendly-banner {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .contact-calendly-arrow { display: none; }
}

/* Feedback messages */
.contact-feedback {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: var(--fs-body);
}
.contact-feedback--success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #166534;
}
.contact-feedback--error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #991b1b;
}

@media (max-width: 560px) {
  .contact-form { grid-template-columns: 1fr; }
  .form-row--submit { flex-direction: column; align-items: flex-start; }
}

/* ── CONTACT SUCCESS STATE ───────────────────────── */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 3rem;
  background: var(--navy);
  border-radius: 16px;
  color: var(--white);
}
.contact-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(245,166,35,0.15);
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}
.contact-success-title {
  font-size: var(--fs-heading);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 0;
}
.contact-success-body {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0;
}
.contact-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--amber);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 700;
  font-size: var(--fs-btn);
  text-decoration: none;
  transition: opacity 0.15s;
}
.contact-success-btn:hover { opacity: 0.85; }

/* ── SERVICE DETAIL INLINE LINK ─────────────────── */
.service-detail-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy);
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.5rem;
  transition: color 0.15s;
}
.service-detail-inline-link:hover { color: var(--amber); }
.service-detail-inline-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── SERVICE WORKSHOP TEASER ─────────────────────── */
.service-workshop-teaser {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.service-workshop-teaser-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  max-width: 760px;
}
.service-workshop-teaser-title {
  font-size: var(--fs-heading);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.service-workshop-teaser-desc {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* ── SERVICE CARD LINK ───────────────────────────── */
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-size: var(--fs-meta);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.15s;
}
.service-card-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.service-card-link:hover { gap: 0.6rem; }
.service-card-link:hover svg { transform: translateX(2px); }

.service-card-link--light {
  color: var(--amber);
}

/* ── SERVICES PAGE HERO ──────────────────────────── */
.services-page-hero {
  background: linear-gradient(160deg, #0F2B5B 0%, #1A4A8A 100%);
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.services-page-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(245,158,11,0.07);
  pointer-events: none;
}
.services-page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.services-page-hero-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.services-page-hero-subtitle {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  line-height: 1.65;
}

/* ── SERVICE SECTIONS (services page listing) ────── */
.service-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.service-section--alt {
  background: var(--gray-50);
}
.service-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.service-section-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.service-section-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}
.service-section-content {
  max-width: 800px;
}
.service-section-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.service-section-tagline {
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.service-section-desc {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.service-section-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}
.service-section-bullets li {
  font-size: var(--fs-body);
  color: var(--gray-600);
  padding-left: 1.25rem;
  position: relative;
}
.service-section-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.service-section-for-whom {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--amber);
  background: rgba(245,158,11,0.06);
  border-radius: 0 8px 8px 0;
}
.service-section-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SERVICE DETAIL HERO ─────────────────────────── */
.service-detail-hero {
  background: linear-gradient(160deg, #0F2B5B 0%, #1A4A8A 100%);
  padding: clamp(7rem, 14vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.service-detail-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245,158,11,0.07);
  pointer-events: none;
}
.service-detail-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}
.service-detail-hero-icon {
  width: 72px;
  height: 72px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.service-detail-hero-icon svg {
  width: 34px;
  height: 34px;
  color: var(--amber);
}
.service-detail-hero-title {
  font-size: var(--fs-heading-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.service-detail-hero-tagline {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.65;
}
.service-detail-hero .back-link {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}
.service-detail-hero .back-link:hover {
  color: var(--white);
}

/* ── SERVICE DETAIL BODY ─────────────────────────── */
.service-detail-body {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--white);
}
.service-detail-body-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.service-detail-section-heading {
  font-size: var(--fs-heading);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.service-detail-section-heading:first-child {
  margin-top: 0;
}
.service-detail-text {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.service-detail-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-detail-bullets li {
  font-size: var(--fs-body);
  color: var(--gray-600);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.service-detail-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}
.service-detail-for-whom {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 1.5rem;
}
.service-detail-for-whom-label {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}
.service-detail-for-whom p:last-child {
  font-size: var(--fs-body);
  color: var(--gray-600);
  line-height: 1.65;
  margin: 0;
}

/* Sidebar */
.service-detail-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-detail-cta-card {
  display: block;
  background: var(--navy);
  border-radius: 16px;
  padding: 2rem;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-detail-cta-card:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(15,43,91,0.25);
}
.service-detail-cta-card h3 {
  font-size: var(--fs-heading-sm);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-detail-cta-card p {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.service-detail-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: var(--amber);
  color: var(--navy);
  border-radius: 8px;
  font-size: var(--fs-btn);
  font-weight: 700;
  transition: opacity 0.15s;
}
.service-detail-cta-card:hover .service-detail-cta-btn {
  opacity: 0.9;
}
.service-detail-cta-btn svg {
  width: 16px;
  height: 16px;
}
.service-detail-cta-card--calendly {
  background: linear-gradient(155deg, #FCD34D 0%, #F59E0B 100%);
}
.service-detail-cta-card--calendly:hover {
  background: linear-gradient(155deg, #FDE68A 0%, #FBBF24 100%);
  box-shadow: 0 8px 32px rgba(245,158,11,0.35);
}
.service-detail-cta-card--calendly h3 {
  color: var(--navy);
}
.service-detail-cta-card--calendly p {
  color: rgba(14,20,58,0.78);
}
.service-detail-cta-card--calendly .service-detail-cta-btn {
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1.5rem;
}
.service-detail-cta-card--calendly .service-detail-cta-btn svg {
  color: var(--amber);
}
.service-detail-other-services {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 1.5rem;
}
.service-detail-other-services h4 {
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.service-detail-other-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.service-detail-other-services a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  color: var(--navy);
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
.service-detail-other-services a:hover {
  background: var(--gray-100);
}
.other-service-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.other-service-icon svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* ── SERVICES PAGE RESPONSIVE ────────────────────── */
@media (max-width: 900px) {
  .service-section-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-section-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .service-section-icon svg { width: 26px; height: 26px; }
  .service-section-bullets {
    grid-template-columns: 1fr;
  }
  .service-detail-body-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-detail-sidebar {
    position: static;
  }
}
