/* ============================================================
   IDOGO — Language, Education, and Colonial Legacy
   style.css — Shared stylesheet for all pages
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --bg:          #F5F1E8;   /* dirty white / parchment        */
  --surface:     #FAF7F2;   /* warm ivory                     */
  --accent:      #6F4E37;   /* coffee brown                   */
  --heading:     #2F241D;   /* espresso                       */
  --muted:       #7C6A5B;   /* taupe                          */
  --border:      #E5D8C8;   /* beige                          */
  --white:       #FFFFFF;
  --accent-dark: #563C28;   /* darker coffee for hover        */

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 2px 12px rgba(47, 36, 29, 0.10);
  --shadow-lg:   0 6px 28px rgba(47, 36, 29, 0.14);

  --max-width:   1160px;
  --section-gap: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--heading);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 680px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-gap) 0;
}

.section--alt {
  background-color: var(--surface);
}

.section--dark {
  background-color: var(--heading);
  color: var(--border);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--surface);
}

.section--dark p,
.section--dark .section-label {
  color: var(--border);
}

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

.flex   { display: flex; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

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

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

/* ── Floating Banner ──────────────────────────────────────── */
.floating-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 48px 10px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 1000;
  line-height: 1.4;
}

.floating-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.floating-banner a:hover {
  color: var(--border);
}

.banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
}

.banner-close:hover {
  opacity: 0.75;
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--shadow);
}

/* Pushed down when banner is visible */
.banner-visible .site-nav {
  top: 40px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo area */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo:hover {
  text-decoration: none;
}

.logo-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background-color: var(--border);
  border: 2px dashed var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: 0.03em;
}

.nav-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background-color: var(--bg);
  text-decoration: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--heading);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 0 20px;
  border-top: 1px solid var(--border);
}

.nav-mobile a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 24px;
  display: block;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
  background-color: var(--bg);
  text-decoration: none;
}

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

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  background-color: var(--heading);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(111, 78, 55, 0.18);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(111, 78, 55, 0.10);
  pointer-events: none;
}

.hero .section-label {
  color: var(--border);
}

.hero h1 {
  color: var(--surface);
  margin-bottom: 20px;
}

.hero p {
  color: var(--border);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background-color: var(--heading);
  padding: 64px 0 56px;
}

.page-hero .section-label {
  color: var(--border);
}

.page-hero h1 {
  color: var(--surface);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--border);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ── Cards Grid ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

/* ── Card Base ────────────────────────────────────────────── */
.card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.card h3, .card h4 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* ── Quick Link Cards (Home) ──────────────────────────────── */
.quick-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: var(--heading);
}

.quick-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  text-decoration: none;
  color: var(--heading);
}

.quick-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.quick-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.quick-card p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 100%;
}

/* ── Theme Cards ──────────────────────────────────────────── */
.theme-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.theme-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.theme-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.theme-card p {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.theme-card a {
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── Video Cards ──────────────────────────────────────────── */
.video-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.video-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.video-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  background-color: rgba(111, 78, 55, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.video-card-body {
  padding: 20px 22px 22px;
}

.video-card-body h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.video-card-body p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ── Resource Items ───────────────────────────────────────── */
.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: box-shadow 0.2s;
}

.resource-item:hover {
  box-shadow: var(--shadow);
}

.resource-icon {
  width: 44px;
  height: 44px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.resource-body h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.resource-body p {
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.resource-tag {
  display: inline-block;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ── Reflection Cards ─────────────────────────────────────── */
.reflection-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.reflection-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.reflection-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.reflection-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.reflection-card p {
  font-size: 0.94rem;
  margin-bottom: 16px;
}

/* ── Bio Cards ────────────────────────────────────────────── */
.bio-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}

.bio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.bio-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--border);
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  overflow: hidden;
}

.bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.bio-role {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.bio-card p {
  font-size: 0.92rem;
  max-width: 100%;
  text-align: left;
  margin-bottom: 14px;
}

.bio-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.bio-interest-tag {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Event Cards ──────────────────────────────────────────── */
.event-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.event-date-block {
  background-color: var(--accent);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}

.event-date-block .event-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.event-date-block .event-day {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.event-body h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.event-body p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.event-location {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Community Voice Cards ────────────────────────────────── */
.voice-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.voice-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.voice-quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--border);
  line-height: 0.6;
  margin-bottom: 12px;
  display: block;
}

.voice-card p {
  font-size: 0.97rem;
  font-style: italic;
  margin-bottom: 18px;
  max-width: 100%;
}

.voice-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.voice-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading);
  display: block;
}

.voice-author-role {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-form-wrap {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 660px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.97rem;
  color: var(--heading);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(111, 78, 55, 0.12);
}

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

.form-success {
  display: none;
  background-color: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2e7d32;
  font-size: 0.97rem;
  margin-top: 16px;
}

/* ── YouTube Embed ────────────────────────────────────────── */
.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--heading);
}

.video-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.05rem;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* ── Values List ──────────────────────────────────────────── */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.value-item {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.9rem;
  max-width: 100%;
}

/* ── Spotlight ────────────────────────────────────────────── */
.spotlight-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.spotlight-wrap.reverse {
  direction: rtl;
}

.spotlight-wrap.reverse > * {
  direction: ltr;
}

.spotlight-text h2 {
  margin-bottom: 14px;
}

.spotlight-text p {
  margin-bottom: 22px;
}

.spotlight-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--border);
  width: 100%;
  display: block;
  position: relative;
}

.spotlight-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background-color: var(--heading);
  color: var(--border);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background-color: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}

.footer-brand-text .footer-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--surface);
  display: block;
}

.footer-brand-text .footer-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
}

.footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--surface);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
  max-width: 100%;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-gap: 60px; }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .spotlight-wrap {
    grid-template-columns: 1fr;
  }

  .spotlight-wrap.reverse {
    direction: ltr;
  }
}

@media (max-width: 680px) {
  :root { --section-gap: 48px; }

  .nav-links    { display: none; }
  .nav-toggle   { display: flex; }

  .hero { padding: 72px 0 60px; }

  .cards-grid,
  .cards-grid-3,
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .event-card {
    flex-direction: column;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Quick links image grid (home page) ── */
.ql-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.ql-header-tile {
  grid-column: 1 / -1;
  background-color: var(--heading);
  padding: 44px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ql-header-tile .section-label {
  color: var(--accent);
}

.ql-header-tile h2 {
  color: var(--surface);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 6px;
}

.ql-header-tile p {
  color: var(--border);
  font-size: 1rem;
  max-width: 560px;
  margin: 0;
}

.ql-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.ql-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ql-card:hover img {
  transform: scale(1.06);
}

.ql-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 12, 8, 0.90) 0%,
    rgba(20, 12, 8, 0.45) 55%,
    rgba(20, 12, 8, 0.10) 100%
  );
  transition: background 0.3s ease;
}

.ql-card:hover .ql-overlay {
  background: linear-gradient(
    to top,
    rgba(111, 78, 55, 0.92) 0%,
    rgba(111, 78, 55, 0.55) 55%,
    rgba(20, 12, 8, 0.15) 100%
  );
}

.ql-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
}

.ql-caption h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.ql-caption p {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  max-width: 100%;
  line-height: 1.5;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.ql-card:hover .ql-caption p {
  opacity: 1;
  transform: translateY(0);
}

.ql-arrow {
  display: inline-block;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ql-card:hover .ql-arrow {
  opacity: 1;
}

@media (max-width: 600px) {
  .ql-grid {
    grid-template-columns: 1fr;
  }
  .ql-header-tile {
    padding: 28px 24px;
  }
}
