/* ALAANU — Premium Yoruba Charity */

:root {
  --ink: #100a05;
  --earth: #241208;
  --earth-light: #3a2010;
  --bronze: #6b4423;
  --gold: #a67c00;
  --gold-bright: #d4af37;
  --gold-light: #f0e6c8;
  --gold-shimmer: #ffe9a0;
  --coral: #7a3328;
  --cream: #faf6f0;
  --cream-dark: #ebe3d4;
  --indigo: #152a42;
  --indigo-deep: #081420;
  --white: #fffcf5;
  --adire-blue: #1a3550;
  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --border-traditional: 3px double var(--gold-bright);
  --shadow: 0 24px 64px rgba(8, 20, 32, 0.12);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Adire background texture */
.adire-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 20% 30%, var(--adire-blue) 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, var(--adire-blue) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--bronze) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, var(--bronze) 1px, transparent 1px);
  background-size: 48px 48px, 64px 64px, 56px 56px, 72px 72px;
}

/* Top ribbon — gele / woven strip */
.top-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 101;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 12px,
    var(--earth) 12px,
    var(--earth) 24px,
    var(--coral) 24px,
    var(--coral) 36px,
    var(--indigo-deep) 36px,
    var(--indigo-deep) 48px
  );
}

/* Header */
.site-header {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 32px rgba(8, 20, 32, 0.06);
}

.nav {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--earth);
}

.logo-cowrie {
  width: 36px;
  height: 22px;
  color: var(--gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.4rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--bronze);
}

.nav-cta {
  padding: 0.5rem 1.1rem !important;
  background: var(--earth);
  color: var(--cream) !important;
  border: 2px solid var(--gold);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--bronze);
  color: var(--white) !important;
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  background: var(--white);
  border: 1px solid rgba(212, 175, 55, 0.55);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lang-toggle:hover {
  background: var(--gold-light);
  border-color: var(--gold-bright);
  color: var(--earth);
}

.lang-toggle-icon {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 0.1rem 0.25rem;
  line-height: 1;
}

body.lang-en .lang-toggle {
  background: var(--indigo-deep);
  color: var(--gold-light);
  border-color: var(--gold-bright);
}

body.lang-en .lang-toggle-icon {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

/* English mode — proverb cards show translation prominently */
body.lang-en .proverb-en {
  font-size: 1.25rem;
}

body.lang-en .quote-strip .yoruba-text {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

body.lang-en .accent-trans[hidden],
body.lang-en .i18n-hide-empty[hidden] {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: rgba(250, 246, 240, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  cursor: pointer;
  padding: 12px 12px;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(8, 20, 32, 0.12);
  transition:
    transform 0.28s var(--ease-premium),
    box-shadow 0.28s var(--ease-premium),
    background 0.28s var(--ease-premium),
    border-color 0.28s var(--ease-premium);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--earth), var(--gold-bright));
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 0.32s var(--ease-premium),
    opacity 0.22s ease,
    width 0.32s var(--ease-premium);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(8, 20, 32, 0.14);
  border-color: rgba(212, 175, 55, 0.75);
}

.nav-toggle:active {
  transform: translateY(0);
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.55);
  outline-offset: 4px;
}

/* Animate hamburger into X when menu is open */
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 24px;
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.6);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  width: 24px;
}

/* Traditional card */
.traditional-card {
  background: linear-gradient(165deg, var(--white) 0%, #f8f4ec 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow), var(--shadow-gold);
  position: relative;
}

.traditional-card::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(184, 134, 11, 0.35);
  pointer-events: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 5rem;
  text-align: center;
  color: var(--cream);
  z-index: 1;
  background:
    linear-gradient(180deg, var(--indigo-deep) 0%, var(--indigo) 35%, var(--earth) 85%, var(--earth-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23d4af37' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.hero-frame {
  position: absolute;
  inset: 4rem 2rem 3rem;
  border: 2px solid rgba(212, 175, 55, 0.35);
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold-bright);
  border-style: solid;
}

.frame-tl { top: -1px; left: -1px; border-width: 3px 0 0 3px; }
.frame-tr { top: -1px; right: -1px; border-width: 3px 3px 0 0; }
.frame-bl { bottom: -1px; left: -1px; border-width: 0 0 3px 3px; }
.frame-br { bottom: -1px; right: -1px; border-width: 0 3px 3px 0; }

.hero-pillars {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  opacity: 0.15;
}

.pillar-deco {
  width: 24px;
  height: 70%;
  align-self: center;
  background: repeating-linear-gradient(
    180deg,
    var(--gold) 0,
    var(--gold) 8px,
    transparent 8px,
    transparent 16px
  );
  border-left: 2px solid var(--gold-light);
  border-right: 2px solid var(--gold-light);
}

.hero-inner {
  position: relative;
  max-width: 760px;
}

.hero-invocation {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.hero-greeting {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(230, 200, 110, 0.85);
  margin-bottom: 1.25rem;
}

.hero-ade {
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
  opacity: 0.7;
}

.ade-svg {
  width: 100px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 5.75rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1.05;
  color: var(--white);
  background: linear-gradient(180deg, var(--white) 0%, var(--gold-shimmer) 45%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.45));
  margin-bottom: 0;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.5rem;
  margin: 1.25rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 36rem;
}

.hero-tag {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  background: rgba(8, 20, 32, 0.4);
  backdrop-filter: blur(4px);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-title-yoruba {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--gold-bright);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

.hero-title-sub {
  display: block;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--gold-light);
  opacity: 0.9;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  margin: 1.75rem 0 1rem;
  color: var(--gold-light);
  padding: 0 1rem;
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  display: inline-block;
}

.hero-inclusive {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ọ̀nà àṣìrí — hidden path (source & seeker) */
.onimo-ile {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ile-whisper {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 200;
  max-width: min(92vw, 28rem);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  text-align: center;
  color: var(--gold-light);
  background: linear-gradient(135deg, var(--indigo-deep), var(--earth));
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-premium), transform 0.45s var(--ease-premium), visibility 0.45s;
  pointer-events: none;
}

.ile-whisper.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.hero-cowries {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-cowries span {
  width: 14px;
  height: 9px;
  background: var(--gold-bright);
  border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  opacity: 0.6;
  cursor: pointer;
  animation: cowrie-glow 2.5s ease-in-out infinite;
  transition: box-shadow 0.35s var(--ease-premium);
}

.hero-cowries span.ori-lit {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--gold-bright), 0 0 14px rgba(212, 175, 55, 0.5);
  animation: none;
}

.hero-cowries span:nth-child(2) { animation-delay: 0.3s; }
.hero-cowries span:nth-child(3) { animation-delay: 0.6s; }
.hero-cowries span:nth-child(4) { animation-delay: 0.9s; }
.hero-cowries span:nth-child(5) { animation-delay: 1.2s; }

@keyframes cowrie-glow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.15); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Divider */
.divider-traditional {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  background: var(--earth);
  height: 28px;
  position: relative;
  z-index: 2;
}

.divider-line {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-shimmer) 0%, var(--gold-bright) 50%, var(--gold) 100%);
  color: var(--earth);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  letter-spacing: 0.12em;
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--gold-light), var(--gold-shimmer));
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.15);
}

.btn-full {
  width: 100%;
}

/* Quote */
.quote-strip {
  position: relative;
  z-index: 1;
  background: var(--earth);
  padding: 3rem 1.5rem;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.quote-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.quote-mark {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.quote-mark-end {
  transform: scaleX(-1);
}

.yoruba-text {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.quote-translation {
  font-size: 0.95rem;
  color: var(--cream-dark);
  opacity: 0.9;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 1.5rem;
}

.section-alt {
  background: var(--cream-dark);
  border-top: 1px solid rgba(122, 74, 36, 0.2);
  border-bottom: 1px solid rgba(122, 74, 36, 0.2);
}

.container {
  max-width: 1040px;
  margin: 0 auto;
}

.section-header.ornate {
  text-align: center;
}

.section-ornament {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 600;
  color: var(--earth);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.section-header:not(.ornate) {
  margin-bottom: 2.5rem;
}

.section-header.ornate {
  margin-bottom: 3rem;
}

.section-lead {
  margin-top: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
}

.yoruba-accent {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--bronze);
  margin-top: 1.25rem;
  line-height: 1.6;
}

.accent-trans {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  opacity: 0.75;
  margin-top: 0.35rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.lead-dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 0.85;
  margin: 0.1rem 0.5rem 0 0;
  color: var(--gold);
  font-weight: 700;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-card {
  padding: 2rem 1.75rem;
}

.card-crown {
  width: 60px;
  height: 20px;
  margin: 0 auto 1rem;
  border-top: 3px solid var(--gold);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  position: relative;
}

.card-crown::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--earth);
  border-bottom: var(--border-traditional);
  padding-bottom: 0.75rem;
}

.about-card ul {
  list-style: none;
}

.about-card li {
  padding: 0.55rem 0;
  border-bottom: 1px dotted var(--bronze);
  font-size: 0.92rem;
}

.about-card li span {
  font-weight: 600;
  color: var(--earth);
}

/* Values */
.section-values {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--bronze);
  position: relative;
  transition: transform 0.25s;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(184, 134, 11, 0.3);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.value-symbol {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.value-symbol svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--indigo);
  margin-bottom: 0.25rem;
}

.value-yoruba {
  font-style: italic;
  color: var(--bronze);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.value-card p:last-child {
  font-size: 0.88rem;
  opacity: 0.9;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.pillar {
  padding: 2rem 1.5rem;
  text-align: center;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--earth);
  margin-bottom: 0.35rem;
}

.pillar-yoruba {
  font-style: italic;
  color: var(--bronze);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

.pillar p:last-child {
  font-size: 0.9rem;
}

/* Heritage */
.section-heritage {
  background: var(--white);
}

.heritage-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.adire-panel {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 340px;
  margin: 0 auto;
  background: var(--adire-blue);
  border: 4px solid var(--gold);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.adire-stitch {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.06) 11px,
      rgba(255, 255, 255, 0.06) 12px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.06) 11px,
      rgba(255, 255, 255, 0.06) 12px
    );
}

.adire-motif {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.5);
}

.adire-spiral {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 15%;
  background:
    radial-gradient(circle, transparent 30%, rgba(212, 175, 55, 0.2) 31%, transparent 32%),
    radial-gradient(circle, transparent 50%, rgba(212, 175, 55, 0.15) 51%, transparent 52%);
}

.adire-dots {
  width: 80px;
  height: 80px;
  bottom: 25%;
  right: 20%;
  background-image: radial-gradient(circle, var(--gold-light) 2px, transparent 2px);
  background-size: 12px 12px;
  border: none;
}

.adire-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: rgba(12, 26, 46, 0.85);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: 0.95rem;
}

.heritage-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--earth);
  margin: 0.5rem 0 1rem;
}

.heritage-list {
  list-style: none;
  margin: 1.25rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.heritage-list li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
}

.heritage-list strong {
  color: var(--earth);
  min-width: 6em;
  display: inline-block;
}

/* Wisdom & proverbs */
.section-proverbs,
.section-wisdom {
  background:
    linear-gradient(160deg, var(--indigo-deep) 0%, var(--earth) 45%, var(--earth-light) 100%);
  color: var(--cream);
  padding-bottom: 6rem;
}

.section-proverbs .section-label,
.section-proverbs .section-header h2,
.section-proverbs .proverbs-subheader .section-label,
.section-proverbs .proverbs-subheader h2,
.section-wisdom .section-label,
.section-wisdom .section-header h2,
.section-wisdom .proverbs-subheader .section-label,
.section-wisdom .proverbs-subheader h2,
.section-proverbs .section-ornament,
.section-wisdom .section-ornament {
  color: var(--gold-light);
}

.section-proverbs .section-ornament,
.section-wisdom .section-ornament {
  color: var(--gold);
}

.proverbs-subheader {
  text-align: center;
  margin: 0 0 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.proverbs-subheader h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Ancient words on giving */
.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.wisdom-card {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-top: 3px solid var(--gold-bright);
  text-align: center;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s;
}

.wisdom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.wisdom-term {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.wisdom-gloss {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.wisdom-card p:last-child {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(240, 230, 200, 0.88);
  font-weight: 300;
}

.proverbs-intro {
  max-width: 520px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(240, 230, 200, 0.8);
}

.proverbs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.pillar-featured {
  border-color: var(--gold-bright);
  background: linear-gradient(165deg, var(--white) 0%, #faf6ee 100%);
}

.pillar-featured .pillar-num {
  color: var(--gold);
  opacity: 0.85;
}

.pillar-seo {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dotted rgba(139, 90, 43, 0.35);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--bronze);
  line-height: 1.5;
}

body.lang-yo .pillar-seo {
  font-family: var(--font-display);
}

.section-proverbs .pillar-seo,
.section-alt .pillar-seo {
  color: var(--bronze);
}

.proverb-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-left: 4px solid var(--gold);
  border-radius: 2px;
  position: relative;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}

.proverb-card::before {
  content: "❝";
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.25;
  font-family: var(--font-display);
}

.proverb-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
}

.proverb-yoruba {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.proverb-en {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Founder */
.section-founder {
  background: var(--cream);
}

.founder-card {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem;
}

.founder-frame {
  flex-shrink: 0;
}

.founder-emblem {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-cowrie {
  position: relative;
  z-index: 1;
  width: 52px;
  height: auto;
  color: var(--gold-bright);
}

.emblem-ring {
  position: absolute;
  inset: 0;
  border: 3px double var(--gold);
  border-radius: 50%;
  background: var(--earth);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.emblem-ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
}

.founder-body h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--earth);
}

.founder-role {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0.35rem 0 1rem;
}

.oriki {
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
}

.oriki-line {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--earth);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Contact — premium, no form */
.section-cta {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 175, 55, 0.08), transparent),
    linear-gradient(180deg, var(--indigo-deep) 0%, #0a1628 100%);
  color: var(--cream);
  border-top: 1px solid rgba(212, 175, 55, 0.5);
  padding-bottom: 6rem;
}

.section-cta .section-ornament {
  color: var(--gold-bright);
}

.section-cta .section-label {
  color: var(--gold-light);
}

.section-cta .section-header h2 {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-cta .section-lead {
  color: rgba(240, 230, 200, 0.9);
  max-width: 480px;
}

.contact-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 3rem;
}

.contact-card {
  padding: 2.5rem 2rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  transition: transform 0.4s var(--ease-premium), border-color 0.4s, box-shadow 0.4s;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25), var(--shadow-gold);
}

.contact-card-featured {
  background: linear-gradient(165deg, rgba(212, 175, 55, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.03);
}

.contact-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.contact-card-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--gold-bright);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5em;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-card-yoruba {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-bright);
  opacity: 0.85;
  margin-bottom: 1rem;
}

.contact-card p:last-child {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(240, 230, 200, 0.82);
  font-weight: 300;
}

.contact-closing {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
  opacity: 0.9;
}

.contact-closing em {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--gold-bright);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--earth) 0%, var(--ink) 100%);
  color: var(--cream-dark);
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.6);
}

.footer-pattern {
  height: 12px;
  margin: -3rem -1.5rem 2rem;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 8px,
    var(--coral) 8px,
    var(--coral) 16px,
    var(--indigo-deep) 16px,
    var(--indigo-deep) 24px
  );
}

.footer-ade {
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.footer-ade svg {
  width: 80px;
  height: auto;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold-bright);
}

.footer-family {
  font-size: 0.85rem;
  margin-top: 0.25rem;
  color: var(--gold-light);
}

.footer-yoruba {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold-light);
  margin: 1.25rem 0 0.5rem;
}

.footer-verse {
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  opacity: 0.55;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem;
    gap: 0.75rem;
    border-bottom: var(--border-traditional);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .lang-toggle {
    width: 100%;
    justify-content: center;
    margin: 0.25rem 0;
  }

  .hero-frame {
    inset: 5rem 1rem 2rem;
  }

  .hero-title-main {
    letter-spacing: 0.14em;
  }

  .about-grid,
  .heritage-split,
  .contact-premium {
    grid-template-columns: 1fr;
  }

  .contact-card-featured {
    transform: none;
  }

  .contact-card-featured:hover {
    transform: translateY(-6px);
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .oriki {
    text-align: left;
  }

  .quote-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .quote-mark {
    display: none;
  }
}
