/* ============================================================
   BRAND TOKENS — from IYGIG Brand Standards Guide v1.0
   ============================================================ */
:root {
  --alabaster:   #F3F0EA;
  --pebble:      #D8D2C8;
  --indigo:      #243D66;
  --indigo-deep: #1B2E4D;
  --terracotta:  #B6673D;
  --gold:        #C8A65A;
  --white-tint:  rgba(255,255,255,0.5);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background-color: var(--alabaster);
  color: var(--indigo);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================================
   TYPOGRAPHY HIERARCHY (Brand Standards, Section 4)
   ============================================================ */
h1, h2, .display { font-family: 'Cormorant Garamond', serif; }
h1 { font-weight: 700; line-height: 1.05; }
h2 { font-weight: 600; line-height: 1.15; }
h3 { font-family: 'Inter', sans-serif; font-weight: 600; line-height: 1.3; }
p  { font-family: 'Inter', sans-serif; font-weight: 400; }
.caption { font-family: 'Inter', sans-serif; font-weight: 300; font-size: 0.78rem; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 860px; }
.section { padding: 6rem 2rem; }
.section--tight { padding: 4rem 2rem; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* ============================================================
   GRID SYSTEM
   ============================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.5rem; }
  .container { padding: 0 1.25rem; }
}

/* ============================================================
   STICKY NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 240, 234, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pebble);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav__brand img { height: 34px; width: auto; }
.nav__wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--indigo);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}
.nav__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.is-active { color: var(--terracotta); }

/* Dropdown (Divisions) */
.nav__item--dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--indigo);
  padding: 0;
}
.nav__dropdown-toggle:hover { color: var(--terracotta); }
.nav__dropdown-toggle svg { width: 10px; height: 10px; transition: transform 0.2s; }
.nav__item--dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--alabaster);
  border: 1px solid var(--pebble);
  border-radius: 12px;
  padding: 0.6rem;
  min-width: 220px;
  box-shadow: 0 20px 38px -16px rgba(36,61,102,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav__item--dropdown:hover .nav__dropdown-menu,
.nav__item--dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--indigo);
  text-decoration: none;
}
.nav__dropdown-menu a:hover { background: rgba(182,103,61,0.1); color: var(--terracotta); }

/* Mobile nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--indigo);
  padding: 0.25rem;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--alabaster);
  border-top: 1px solid var(--pebble);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav__mobile.open { max-height: 600px; overflow-y: auto; }
.nav__mobile a {
  display: block;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--indigo);
  text-decoration: none;
  border-bottom: 1px solid var(--pebble);
}
.nav__mobile a:hover { color: var(--terracotta); background: rgba(255,255,255,0.4); }
.nav__mobile .nav__mobile-sub a {
  padding-left: 3rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(36,61,102,0.75);
}
.nav__mobile-group-label {
  padding: 0.9rem 2rem 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(36,61,102,0.5);
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile { display: flex; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 2.25rem;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, background-color 0.2s, color 0.2s;
}
.btn:active { transform: scale(0.97) !important; }

.btn--primary {
  background-color: var(--terracotta);
  color: var(--alabaster);
  border: 2px solid var(--terracotta);
}
.btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 26px -8px rgba(182,103,61,0.45);
  background-color: #a05832;
}

.btn--ghost {
  background-color: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn--ghost:hover {
  transform: scale(1.04);
  background-color: var(--indigo);
  color: var(--alabaster);
}

.btn--ghost-light {
  background-color: transparent;
  color: var(--alabaster);
  border: 2px solid rgba(243,240,234,0.5);
}
.btn--ghost-light:hover {
  transform: scale(1.04);
  background-color: var(--alabaster);
  color: var(--indigo);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.btn-group--center { justify-content: center; }

/* ============================================================
   COMPASS MARK / LOGO
   ============================================================ */
.compass-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.compass-wrap svg { animation: riseIn 1s cubic-bezier(0.22,1,0.36,1) both; }
.hero-logo {
  width: 320px;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 44px -12px rgba(0,0,0,0.4);
  animation: riseIn 1s cubic-bezier(0.22,1,0.36,1) both;
}
@media (max-width: 600px) {
  .hero-logo { width: 240px; }
}

/* ============================================================
   GOLD DIVIDER
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 220px;
  margin: 0 auto 3.5rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}
.divider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADER BLOCK
   ============================================================ */
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-top: 0.5rem; }
.section-header p {
  max-width: 540px;
  margin: 1rem auto 0;
  color: rgba(36,61,102,0.75);
  font-size: 1rem;
}

/* ============================================================
   HOME HERO (cinematic)
   ============================================================ */
.hero-cinematic {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--indigo);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(36, 61, 102, 0.85) 0%,
    rgba(36, 61, 102, 0.55) 50%,
    rgba(36, 61, 102, 0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}
.hero__logo-col { flex-shrink: 0; }
.hero__text-col h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--alabaster);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}
.hero__text-col .eyebrow { color: var(--gold); margin-bottom: 0.6rem; display: block; }
.hero__text-col .hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(243,240,234,0.82);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__text-col .btn--ghost { border-color: rgba(243,240,234,0.5); color: var(--alabaster); }
.hero__text-col .btn--ghost:hover { background-color: var(--alabaster); color: var(--indigo); }
@media (max-width: 768px) {
  .hero-cinematic { min-height: 100svh; }
  .hero__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .hero__text-col .hero__sub { max-width: 100%; }
}

/* ============================================================
   PAGE HERO (interior pages — About, Leadership, Divisions, etc.)
   ============================================================ */
.page-hero {
  background-color: var(--indigo);
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold); display: block; margin-bottom: 0.75rem; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: var(--alabaster);
  max-width: 780px;
  margin: 0 auto 1.25rem;
}
.page-hero p {
  color: rgba(243,240,234,0.75);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}
.page-hero .breadcrumb {
  font-size: 0.78rem;
  color: rgba(243,240,234,0.55);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}
.page-hero .breadcrumb a { color: rgba(243,240,234,0.8); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   MISSION / TEXT SECTION
   ============================================================ */
.mission {
  background: rgba(255,255,255,0.45);
  border-top: 1px solid var(--pebble);
  border-bottom: 1px solid var(--pebble);
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 700px) { .mission__grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.mission__text h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); margin-bottom: 1.25rem; }
.mission__text p { color: rgba(36,61,102,0.82); line-height: 1.8; font-size: 1.05rem; }
.mission__text p + p { margin-top: 1rem; }
.mission__quote {
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--terracotta);
  line-height: 1.3;
}

/* ============================================================
   VALUES / PILLARS
   ============================================================ */
.values { background-color: var(--alabaster); }
.value-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--pebble);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
}
.value-card h3 { font-size: 0.95rem; color: var(--indigo); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.9rem; color: rgba(36,61,102,0.72); line-height: 1.65; }
.value-card--accent { background: var(--terracotta); border-color: var(--terracotta); }
.value-card--accent h3 { color: var(--alabaster); }
.value-card--accent p  { color: rgba(243,240,234,0.88); }

/* ============================================================
   DIVISIONS
   ============================================================ */
.divisions { background-color: var(--indigo); }
.divisions .section-header h2 { color: var(--alabaster); }
.divisions .section-header p  { color: rgba(243,240,234,0.68); }
.divisions .eyebrow { color: var(--gold); }
.division-card {
  background: var(--alabaster);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.division-card:hover { transform: translateY(-6px); box-shadow: 0 20px 38px -16px rgba(0,0,0,0.35); }
.division-card__bar {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.division-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--indigo);
  margin-bottom: 0.75rem;
}
.division-card p { font-size: 0.9rem; color: rgba(36,61,102,0.72); line-height: 1.7; flex: 1; }
.division-card__tags {
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(36,61,102,0.55);
  text-align: center;
  line-height: 1.8;
}
.division-card__link {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
}

/* ============================================================
   LEADERSHIP / FOUNDER CARDS
   ============================================================ */
.leadership { background-color: var(--alabaster); }
.founder-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--pebble);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.founder-card:hover { transform: translateY(-7px); box-shadow: 0 20px 38px -16px rgba(36,61,102,0.25); }
.founder-card__bar { height: 6px; }
.founder-card__body { padding: 1.65rem 1.5rem; }
.founder-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--indigo);
  margin-bottom: 0.3rem;
}
.founder-card__title {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(36,61,102,0.55);
  margin-bottom: 0.65rem;
}
.founder-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--terracotta);
}
.founder-card__photo-wrap { padding: 1.5rem 1.5rem 0; }
.founder-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  display: block;
}
.founder-card__bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(36,61,102,0.72);
  line-height: 1.75;
  margin-top: 0.85rem;
  border-top: 1px solid var(--pebble);
  padding-top: 0.85rem;
}

/* ============================================================
   SPEAKER DIRECTORY (bigspeak-inspired card grid)
   ============================================================ */
.speaker-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--pebble);
}
.speaker-toolbar p { font-size: 0.9rem; color: rgba(36,61,102,0.7); }
.speaker-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--pebble);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.speaker-card:hover { transform: translateY(-7px); box-shadow: 0 20px 38px -16px rgba(36,61,102,0.25); }
.speaker-card__photo-wrap {
  aspect-ratio: 4 / 5;
  background: var(--pebble);
  position: relative;
  overflow: hidden;
}
.speaker-card__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.speaker-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pebble), var(--alabaster));
  color: rgba(36,61,102,0.35);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
}
.speaker-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--terracotta);
  color: var(--alabaster);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
}
.speaker-card__body { padding: 1.35rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.speaker-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--indigo);
  margin-bottom: 0.35rem;
}
.speaker-card__title {
  font-size: 0.82rem;
  color: rgba(36,61,102,0.68);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  flex: 1;
}
.speaker-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.speaker-card__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--indigo);
  background: rgba(36,61,102,0.08);
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
}
.speaker-card__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terracotta);
}

/* ============================================================
   SUB-NAV (used within Elevate Voices pages)
   ============================================================ */
.subnav {
  background: rgba(255,255,255,0.55);
  border-bottom: 1px solid var(--pebble);
  position: sticky;
  top: 72px;
  z-index: 90;
}
.subnav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
}
.subnav a {
  display: inline-block;
  padding: 1rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(36,61,102,0.6);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.subnav a:hover { color: var(--terracotta); }
.subnav a.is-active { color: var(--indigo); border-bottom-color: var(--terracotta); }

/* ============================================================
   GENERIC CONTENT / PROSE (Contact, Privacy, Terms, Topics, Insights)
   ============================================================ */
.prose h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: rgba(36,61,102,0.8); line-height: 1.8; margin-bottom: 1rem; }
.prose ul { margin: 0 0 1rem 1.25rem; color: rgba(36,61,102,0.8); line-height: 1.8; }

.info-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--pebble);
  border-radius: 16px;
  padding: 2rem;
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.info-card p { color: rgba(36,61,102,0.75); line-height: 1.7; margin-bottom: 1rem; }
.info-card a.btn { margin-top: 0.5rem; }

.coming-soon {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed var(--pebble);
  border-radius: 18px;
  background: rgba(255,255,255,0.4);
}
.coming-soon h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.coming-soon p { color: rgba(36,61,102,0.7); max-width: 480px; margin: 0 auto; }

.topic-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--pebble);
  border-radius: 16px;
  padding: 2rem;
}
.topic-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.topic-card p { color: rgba(36,61,102,0.72); font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background-color: var(--indigo);
  padding: 7rem 2rem;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: var(--alabaster);
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p {
  color: rgba(243,240,234,0.72);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.75rem;
  line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--alabaster);
  border-top: 1px solid var(--pebble);
  padding: 3.5rem 2rem 2.5rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--pebble);
}
.footer__brand img { height: 30px; margin-bottom: 0.75rem; }
.footer__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(36,61,102,0.6);
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(36,61,102,0.5);
  margin-bottom: 0.9rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.88rem;
  color: var(--indigo);
  text-decoration: none;
}
.footer__links a:hover { color: var(--terracotta); }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--pebble);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.footer__social a:hover { background: var(--indigo); color: var(--alabaster); }
.footer__social svg { width: 16px; height: 16px; }
.footer__newsletter p { font-size: 0.85rem; color: rgba(36,61,102,0.65); margin-bottom: 0.9rem; line-height: 1.6; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
}
.footer__copy { font-size: 0.78rem; font-weight: 300; color: rgba(36,61,102,0.45); }

@media (max-width: 700px) {
  .footer__top { flex-direction: column; gap: 2rem; }
}

/* ============================================================
   ACCESSIBILITY — focus & reduced motion
   ============================================================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
