/* ==========================================================
   SEKHAR VIJAYABATTU — Personal Brand & Community Platform
   Design System: Cream · Navy · Maroon · Gold
   Mobile-First | Premium | Warm | Human | Inspiring
   ========================================================== */

/* ----------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  /* Base */
  --cream:          #F8F3EB;
  --cream-dark:     #EFE8DA;
  --white:          #FFFFFF;
  --surface:        #FFFDF8;

  /* Brand */
  --navy:           #0D1B3E;
  --navy-mid:       #1A2F5E;
  --navy-light:     #243B73;
  --maroon:         #7C1D34;
  --maroon-light:   #A02D47;
  --gold:           #C9984A;
  --gold-light:     #E8C97E;
  --gold-pale:      #F5E8CE;
  --gold-dark:      #A67B35;

  /* Text */
  --text-heading:   #0D1B3E;
  --text-body:      #3C4B6A;
  --text-muted:     #7A8BA8;
  --text-light:     #B0BDD0;

  /* System */
  --error:          #C53030;
  --success:        #276749;
  --border:         #E5DDD0;
  --border-light:   #F0E8DC;

  /* Shadows */
  --shadow-xs:      0 1px 4px rgba(13,27,62,0.06);
  --shadow-sm:      0 2px 12px rgba(13,27,62,0.08);
  --shadow-md:      0 8px 32px rgba(13,27,62,0.10);
  --shadow-lg:      0 20px 60px rgba(13,27,62,0.13);
  --shadow-gold:    0 4px 20px rgba(201,152,74,0.30);

  /* Typography */
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:       cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:       150ms;
  --dur-base:       300ms;
  --dur-slow:       500ms;

  /* Layout */
  --container:      1180px;
  --navbar-h:       78px;
  --section-py:     5.5rem;
  --radius:         10px;
  --radius-lg:      18px;
  --radius-xl:      28px;
  --radius-full:    9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--dur-base) var(--ease); }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, select, textarea { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.8; }

.text-gold   { color: var(--gold); }
.text-maroon { color: var(--maroon); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }

/* ----------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-py) 0; }
.section--cream   { background: var(--cream); }
.section--white   { background: var(--white); }
.section--navy    { background: var(--navy); }
.section--dark    { background: var(--navy-mid); }
.section--surface { background: var(--surface); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,152,74,0.12);
  border: 1px solid rgba(201,152,74,0.30);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-tag--light { color: var(--gold-light); background: rgba(232,201,126,0.12); border-color: rgba(232,201,126,0.30); }
.section-tag--maroon { color: var(--maroon-light); background: rgba(124,29,52,0.08); border-color: rgba(124,29,52,0.25); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title--white { color: var(--white); }
.section-title--gold  { color: var(--gold-light); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-desc--light { color: rgba(255,255,255,0.70); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Staggered delays */
.reveal:nth-child(1) { transition-delay: 0ms; }
.reveal:nth-child(2) { transition-delay: 80ms; }
.reveal:nth-child(3) { transition-delay: 160ms; }
.reveal:nth-child(4) { transition-delay: 240ms; }
.reveal:nth-child(5) { transition-delay: 320ms; }
.reveal:nth-child(6) { transition-delay: 400ms; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.btn--maroon {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}
.btn--maroon:hover { background: var(--maroon-light); border-color: var(--maroon-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--outline-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(232,201,126,0.5);
}
.btn--outline-gold:hover { background: rgba(201,152,74,0.15); border-color: var(--gold-light); }

.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ----------------------------------------------------------
   5. SCROLL PROGRESS BAR
   ---------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ----------------------------------------------------------
   6. NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  transition: background var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}

.navbar.scrolled {
  background: rgba(248,243,235,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-xs);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  max-width: var(--container);
  margin: 0 auto;
}

/* Brand / Logo */
.navbar__brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.navbar__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: color var(--dur-fast);
}

.navbar__brand-name span { color: var(--maroon); }

.navbar__brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.navbar__brand:hover .navbar__brand-name { color: var(--maroon); }

/* Desktop nav */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__item { position: relative; }

.navbar__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link.active { color: var(--maroon); background: rgba(124,29,52,0.06); }

.navbar__link i { font-size: 0.65rem; transition: transform var(--dur-base) var(--ease); }

.navbar__item:hover .navbar__link i,
.navbar__item.open .navbar__link i { transform: rotate(180deg); }

/* Dropdown */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), visibility var(--dur-base);
  z-index: 100;
}

.navbar__item:hover .navbar__dropdown,
.navbar__item.open .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--dur-fast);
}

.navbar__dropdown-link i { color: var(--gold); font-size: 0.8rem; width: 14px; }

.navbar__dropdown-link:hover { background: var(--cream); color: var(--maroon); }

/* CTA */
.navbar__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  transition: background var(--dur-fast);
}

.navbar__hamburger:hover { background: var(--cream-dark); }

.hamburger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
  margin: 0 auto;
}

.navbar__hamburger.open .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open .hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----------------------------------------------------------
   7. MOBILE MENU
   ---------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,62,0.55);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
  backdrop-filter: blur(4px);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: var(--white);
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open { pointer-events: all; }
.mobile-menu.open .mobile-menu__overlay { opacity: 1; }
.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--dur-fast);
}

.mobile-menu__close:hover { background: var(--cream); color: var(--navy); }

.mobile-menu__nav { flex: 1; }

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--dur-fast);
}

.mobile-menu__link:hover { color: var(--maroon); }

.mobile-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}

.mobile-menu__toggle i { font-size: 0.7rem; transition: transform var(--dur-base) var(--ease); color: var(--text-muted); }
.mobile-menu__toggle.open i { transform: rotate(180deg); }

.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
  background: var(--cream);
  border-radius: var(--radius);
  margin: 0.25rem 0;
}

.mobile-sub.open { max-height: 300px; }

.mobile-sub__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
  padding: 0.6rem 1rem;
  transition: color var(--dur-fast);
}

.mobile-sub__link i { color: var(--gold); font-size: 0.75rem; }
.mobile-sub__link:hover { color: var(--maroon); }

.mobile-menu__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ----------------------------------------------------------
   8. HERO SECTION
   ---------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-h);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 110%;
  background: radial-gradient(ellipse, rgba(201,152,74,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(124,29,52,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,152,74,0.12);
  border: 1px solid rgba(201,152,74,0.35);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero__badge i { color: var(--gold); }

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.hero__name span { color: var(--maroon); }

.hero__prefix {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--maroon);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero__identities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.hero__identity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(13,27,62,0.07);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.hero__identity-pill i { color: var(--gold); font-size: 0.7rem; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__social-label { font-weight: 600; }

.hero__social-links { display: flex; gap: 0.5rem; }

.hero__social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,27,62,0.07);
  border-radius: 50%;
  color: var(--navy);
  font-size: 0.875rem;
  transition: all var(--dur-base);
}

.hero__social-link:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* Photo side */
.hero__photo-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__photo-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.hero__photo-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50% 42% 56% 44% / 48% 52% 46% 54%;
  border: 2px solid rgba(201,152,74,0.3);
  animation: morphBorder 8s ease-in-out infinite;
}

@keyframes morphBorder {
  0%, 100% { border-radius: 50% 42% 56% 44% / 48% 52% 46% 54%; }
  33%       { border-radius: 42% 58% 44% 56% / 52% 46% 54% 48%; }
  66%       { border-radius: 58% 42% 52% 48% / 44% 56% 48% 52%; }
}

.hero__photo-ring2 {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1px dashed rgba(124,29,52,0.15);
  animation: rotate 20s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.hero__photo-frame {
  position: relative;
  border-radius: 50% 42% 56% 44% / 48% 52% 46% 54%;
  overflow: hidden;
  aspect-ratio: 1;
  animation: morphBorder 8s ease-in-out infinite;
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(201,152,74,0.15);
}

.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--maroon) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: -0.02em;
}

.hero__photo-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border);
  min-width: 110px;
}

.hero__photo-badge strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1;
}

.hero__photo-badge span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Hero entrance animations */
.reveal-hero {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEnter 0.7s var(--ease-out) forwards;
}

@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------
   9. IDENTITY PILLARS TICKER
   ---------------------------------------------------------- */
.pillars {
  padding: 1.5rem 0;
  background: var(--navy);
  overflow: hidden;
  border-top: 1px solid rgba(201,152,74,0.2);
  border-bottom: 1px solid rgba(201,152,74,0.2);
}

.pillars__track-wrap { overflow: hidden; }

.pillars__track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.pillar-item i { color: var(--gold); font-size: 1rem; }

.pillar-item__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.pillar-item__sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.pillars:hover .pillars__track { animation-play-state: paused; }

/* ----------------------------------------------------------
   10. ABOUT SNAPSHOT
   ---------------------------------------------------------- */
.about-snap__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-snap__quote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--maroon);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.about-snap__text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-snap__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.75rem; }

/* Stats grid */
.about-snap__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.stat-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease);
}

.stat-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.stat-item__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-item--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.stat-item--featured .stat-item__number { color: var(--gold-light); }
.stat-item--featured .stat-item__label  { color: rgba(255,255,255,0.5); }

/* ----------------------------------------------------------
   11. CURRENT FOCUS AREAS
   ---------------------------------------------------------- */
.focus__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}

.focus-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.focus-card:hover::before { transform: scaleX(1); }

.focus-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(124,29,52,0.1), rgba(201,152,74,0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--maroon);
  transition: all var(--dur-base);
}

.focus-card:hover .focus-card__icon { background: var(--maroon); color: var(--white); }

.focus-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.focus-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   12. FEATURED MOMENTS
   ---------------------------------------------------------- */
.moments-preview {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.moments-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124,29,52,0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(201,152,74,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.moments-preview .section-header { position: relative; z-index: 1; }

.moments-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.moment-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
}

.moment-card--tall { grid-row: span 2; }

.moment-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
  min-height: 180px;
}

.moment-card--tall .moment-card__img { min-height: 380px; }

.moment-card:hover .moment-card__img { transform: scale(1.04); }

.moment-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.85) 0%, transparent 60%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.moment-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.moment-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.3;
}

.moments-preview__cta {
  text-align: center;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------
   13. THOUGHT LEADERSHIP / BOOK
   ---------------------------------------------------------- */
.thought__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.book-showcase {
  position: sticky;
  top: calc(var(--navbar-h) + 2rem);
}

.book-cover-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.book-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 12px 12px 40px rgba(13,27,62,0.25), -4px -4px 20px rgba(201,152,74,0.15);
  transition: transform var(--dur-slow) var(--ease);
}

.book-cover:hover { transform: rotate(-1deg) translateY(-4px); }

.book-cover-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--maroon) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  box-shadow: 12px 12px 40px rgba(13,27,62,0.25);
  transition: transform var(--dur-slow) var(--ease);
}

.book-cover-placeholder:hover { transform: rotate(-1deg) translateY(-4px); }

.book-cover-placeholder__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.book-cover-placeholder__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.book-cover-placeholder__author {
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
}

.book-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.65rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.5rem;
}

.book-info__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.book-info__sub {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.book-info__desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.book-info__launch {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.book-info__launch i { color: var(--gold); margin-top: 3px; }

.book-info__launch p { font-size: 0.88rem; color: var(--text-body); line-height: 1.6; }

/* Articles grid */
.articles__grid {
  display: grid;
  gap: 1.25rem;
}

.article-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: all var(--dur-base) var(--ease);
  box-shadow: var(--shadow-xs);
}

.article-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.article-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.article-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--maroon);
  margin-bottom: 0.35rem;
}

.article-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.article-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ----------------------------------------------------------
   14. COMMUNITY CTA SECTION
   ---------------------------------------------------------- */
.community-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--maroon) 100%);
  position: relative;
  overflow: hidden;
}

.community-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.community-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.community-cta__text .section-tag { color: var(--gold-light); background: rgba(232,201,126,0.12); border-color: rgba(232,201,126,0.30); }

.community-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.community-cta__title span { color: var(--gold-light); }

.community-cta__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.community-cta__btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* Newsletter form */
.newsletter-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  backdrop-filter: blur(8px);
}

.newsletter-box__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.newsletter-box__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.newsletter-form { display: flex; flex-direction: column; gap: 0.85rem; }

.newsletter-form__input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}

.newsletter-form__input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}

.newsletter-form__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.newsletter-form__tag {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ----------------------------------------------------------
   15. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials { background: var(--surface); }

.testimonials__carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  display: none;
  animation: fadeInCard 0.4s var(--ease-out);
}

.testimonial-card.active { display: block; }

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-card__inner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card__inner::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-heading);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-card__author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-card__author span   { font-size: 0.82rem; color: var(--text-muted); }

/* Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-base);
  box-shadow: var(--shadow-xs);
}

.testimonials__btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.testimonials__dots { display: flex; gap: 0.4rem; }

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--dur-base);
  cursor: pointer;
}

.testimonials__dot.active { background: var(--maroon); width: 24px; border-radius: var(--radius-full); }

/* ----------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}

.footer__main {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__brand-name span { color: var(--gold-light); }

.footer__brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer__about {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.footer__socials { display: flex; gap: 0.5rem; }

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--dur-base);
}

.footer__social-link:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.footer__col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--dur-fast);
}

.footer__links a i { font-size: 0.65rem; color: var(--gold); }
.footer__links a:hover { color: var(--gold-light); }

/* Footer newsletter */
.footer__newsletter-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.footer__newsletter-form { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__newsletter-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.875rem;
  width: 100%;
}

.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer__newsletter-input:focus { outline: none; border-color: var(--gold); }

.footer__bottom {
  padding: 1.5rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer__disclaimer i { color: var(--gold); }

/* ----------------------------------------------------------
   17. INNER PAGE HERO
   ---------------------------------------------------------- */
.page-hero {
  padding: calc(var(--navbar-h) + 3.5rem) 0 3.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--maroon) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero--maroon { background: linear-gradient(135deg, var(--maroon) 0%, #4A0F1E 100%); }
.page-hero--gold   { background: linear-gradient(135deg, #5A3A0A 0%, var(--maroon) 100%); }

.page-hero__inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; }

.page-hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(232,201,126,0.12);
  border: 1px solid rgba(232,201,126,0.30);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  line-height: 1.75;
}

/* ----------------------------------------------------------
   18. INNER PAGE CONTENT — GENERIC
   ---------------------------------------------------------- */
.coming-soon-box {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.coming-soon-box__icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.coming-soon-box__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.coming-soon-box__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Timeline */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--maroon), var(--gold));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 0 0 2.5rem 0;
  position: relative;
}

.timeline-item__dot {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: var(--white);
  border: 3px solid var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--maroon);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.timeline-item__content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  flex: 1;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-base);
}

.timeline-item__content:hover { box-shadow: var(--shadow-md); }

.timeline-item__year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.timeline-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline-item__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
  cursor: pointer;
}

.gallery-item__img-wrap {
  position: absolute;
  inset: 0;
}
.gallery-item__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery-item:hover .gallery-item__img-wrap img { transform: scale(1.06); }

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .75rem 1rem;
  background: linear-gradient(to top, rgba(13,27,62,0.85) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur-base);
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.4;
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }

/* Feed cards */
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feed-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease);
}

.feed-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.feed-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--cream-dark);
}

.feed-card__body { padding: 1.25rem; }

.feed-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.feed-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--maroon);
  background: rgba(124,29,52,0.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.feed-card__date { font-size: 0.78rem; color: var(--text-muted); }

.feed-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.feed-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
}

.required { color: var(--maroon); }

.form-input {
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-heading);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
}

.form-input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,27,62,0.08); }
.form-input.error { border-color: var(--error); }
.form-input.error:focus { box-shadow: 0 0 0 3px rgba(197,48,48,0.08); }

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

.form-error {
  font-size: 0.8rem;
  color: var(--error);
  min-height: 1em;
}

/* Honeypot */
.form-honeypot { opacity: 0; position: absolute; pointer-events: none; height: 0; overflow: hidden; }

/* ----------------------------------------------------------
   19. BACK TO TOP + TOAST
   ---------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur-base) var(--ease);
  z-index: 800;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--maroon); transform: translateY(-2px); }

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-base) var(--ease);
  z-index: 2000;
  max-width: 90vw;
}

.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.toast i { color: var(--gold-light); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 380px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1500;
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-slow) var(--ease-out);
}

.cookie-banner.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.cookie-banner a { color: var(--gold-light); text-decoration: underline; }

.cookie-banner__btns { display: flex; gap: 0.6rem; }

/* ----------------------------------------------------------
   20. ANIMATIONS & KEYFRAMES
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .reveal-hero { animation: none; opacity: 1; transform: none; }
  .pillars__track { animation: none; }
  .hero__photo-ring { animation: none; }
  .hero__photo-ring2 { animation: none; }
  .hero__scroll-hint { animation: none; }
}

/* ----------------------------------------------------------
   21. RESPONSIVE — TABLET (≤ 1024px)
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --section-py: 4rem; }

  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero__badge, .hero__identities, .hero__actions, .hero__social { justify-content: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__photo-wrap { width: 280px; margin: 0 auto; }
  .hero__photo-col { order: -1; }
  .hero__photo-badge { display: none; }

  .about-snap__inner { grid-template-columns: 1fr; gap: 3rem; }

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

  .moments-grid { grid-template-columns: 1fr 1fr; }
  .moment-card--tall { grid-row: span 1; }
  .moment-card--tall .moment-card__img { min-height: 200px; }

  .thought__inner { grid-template-columns: 1fr; }
  .book-showcase { position: static; }

  .community-cta__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__col:first-child { grid-column: span 2; }
}

/* ----------------------------------------------------------
   22. RESPONSIVE — MOBILE (≤ 768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --section-py: 3rem; --navbar-h: 66px; }

  .container { padding: 0 1.25rem; }

  .hero__name { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero__photo-wrap { width: 220px; }

  .focus__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .focus-card { padding: 1.5rem 1rem; }

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

  .articles__grid { gap: 1rem; }
  .article-card { flex-direction: column; gap: 0.5rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__col:first-child { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid    { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 280px; }

  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .cookie-banner { left: 1rem; right: 1rem; max-width: none; }

  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
}

/* ----------------------------------------------------------
   23. RESPONSIVE — SMALL (≤ 480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  h2 { font-size: 1.65rem; }
  .hero__name { font-size: 2rem; }
  .focus__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-snap__stats { grid-template-columns: 1fr 1fr; }
  .community-cta__btns { flex-direction: column; }
  .community-cta__btns .btn { width: 100%; }
}
