@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --indigo:      #1B2D5E;
  --indigo-dark: #111D3F;
  --indigo-mid:  #253E7A;
  --gold:        #C9922A;
  --gold-light:  #E8B24A;
  --sand:        #F5EDD8;
  --sand-mid:    #EDE0C4;
  --cream:       #FAF7F0;
  --text:        #1A1A1A;
  --muted:       #5A5A5A;
  --white:       #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* Section shell */
section {
  padding: 100px 6vw;
}

/* Fulani textile geometry: subtle diagonal lines for dark sections */
.textile-pattern {
  position: relative;
  overflow: hidden;
}
.textile-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      60deg,
      rgba(201, 146, 42, 0.05) 0px,
      rgba(201, 146, 42, 0.05) 1px,
      transparent 1px,
      transparent 42px
    ),
    repeating-linear-gradient(
      -60deg,
      rgba(201, 146, 42, 0.05) 0px,
      rgba(201, 146, 42, 0.05) 1px,
      transparent 1px,
      transparent 42px
    );
  pointer-events: none;
}
.textile-pattern > * {
  position: relative;
  z-index: 1;
}

/* Shared typography utilities */
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--indigo-dark);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.4rem 0 2.4rem;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  border: none;
  background: var(--gold);
  color: var(--indigo-dark);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(245, 237, 216, 0.4);
  background: transparent;
  color: var(--sand);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.9rem;
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline--dark {
  border-color: var(--indigo);
  color: var(--indigo);
}
.btn-outline--dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #1FA855;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(31, 168, 85, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-whatsapp:hover {
  background: #178A45;
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--indigo-dark);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.05rem;
  border: none;
  border-radius: 3px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Generic card */
.card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 4px;
  padding: 2rem 1.8rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(27, 45, 94, 0.1);
  transform: translateY(-2px);
}

/* Scroll-entrance animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* Subpage hero banners */
.page-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--indigo-dark);
  padding: 150px 6vw 70px;
}
.page-hero--short {
  min-height: 30vh;
  padding: 130px 6vw 60px;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sand);
  margin-bottom: 1rem;
  max-width: 800px;
}
.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.6);
  line-height: 1.7;
  max-width: 560px;
}
.page-hero .btn-outline {
  margin-top: 2rem;
}

/* Real community photo behind subpage hero banners */
.page-hero {
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17, 29, 63, 0.82), rgba(17, 29, 63, 0.92));
  z-index: 0;
}
.page-hero > h1,
.page-hero > p,
.page-hero > a {
  position: relative;
  z-index: 1;
}

/* Forms */
.famso-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  border: none;
}

.form-field > label,
.form-field > legend {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--sand-mid);
  background: var(--white);
  border-radius: 3px;
  color: var(--text);
  outline: none;
  width: 100%;
  min-height: 44px;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--indigo);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
  border-color: #B23A2E;
}
.field-error {
  font-size: 0.75rem;
  font-weight: 500;
  color: #B23A2E;
  margin-top: 0.1rem;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  padding-top: 0.3rem;
}
.checkbox-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  min-height: 44px;
}
.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--gold);
}

/* Success message shown after submission */
.form-success {
  background: var(--sand);
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  padding: 2.4rem 2.2rem;
  text-align: left;
}
.form-success h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--indigo-dark);
  margin-bottom: 0.8rem;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.form-success .btn-whatsapp {
  margin-top: 0.2rem;
}

/* FAQ accordion */
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-left: 3px solid transparent;
  border-radius: 4px;
  margin-bottom: 0.7rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open {
  border-left-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  min-height: 44px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--indigo-dark);
  transition: color 0.2s ease;
}
.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* Event cards (events page + shared) */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.event-card:hover {
  box-shadow: 0 4px 20px rgba(27, 45, 94, 0.1);
  transform: translateY(-2px);
}

.event-banner {
  height: 6px;
  background: linear-gradient(90deg, var(--indigo) 0%, var(--gold) 100%);
}

.event-body {
  padding: 1.8rem;
}

.event-date {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.event-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--indigo-dark);
  margin-bottom: 0.6rem;
}

.event-desc {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.3rem;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--sand-mid);
  padding-top: 1rem;
}

.event-loc {
  font-size: 0.78rem;
  color: var(--muted);
}

.event-rsvp {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo);
  text-decoration: none;
  transition: color 0.2s ease;
}
.event-rsvp:hover {
  color: var(--gold);
}

/* Past events placeholder box */
.past-events-box {
  background: var(--sand);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 3.5rem;
}
.past-events-box p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--indigo);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* Contact channel cards */
.channel-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.channel-card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: 4px;
  padding: 2.4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.channel-card:hover {
  box-shadow: 0 4px 20px rgba(27, 45, 94, 0.1);
  transform: translateY(-2px);
}

.channel-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.channel-icon--whatsapp { background: #1FA855; }
.channel-icon--email    { background: var(--gold); }
.channel-icon--phone    { background: var(--indigo); }

.channel-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.channel-value {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--indigo-dark);
  margin-bottom: 0.8rem;
  word-break: break-word;
}

.channel-card .btn-primary,
.channel-card .btn-whatsapp {
  margin-top: auto;
}

/* Join page split layout */
.join-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
  padding-top: 72px;
}

.join-side {
  position: relative;
  overflow: hidden;
  background: var(--indigo);
  color: var(--sand);
  padding: 80px 4vw;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.join-side-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.join-side-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 29, 63, 0.75);
  z-index: 0;
}
.join-side > *:not(.join-side-bg):not(.join-side-overlay) {
  position: relative;
  z-index: 1;
}

.join-side .section-eyebrow {
  color: var(--gold-light);
}
.join-side h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--sand);
  margin-bottom: 0.6rem;
}

.reason-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 146, 42, 0.2);
  border-radius: 4px;
  padding: 1.6rem 1.5rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.reason-card:hover {
  background: rgba(201, 146, 42, 0.08);
  border-color: rgba(201, 146, 42, 0.4);
}
.reason-card .reason-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: block;
}
.reason-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 0.4rem;
}
.reason-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.6);
  line-height: 1.7;
}

.join-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin-top: 1rem;
}

.join-form-col {
  background: var(--cream);
  padding: 80px 5vw;
}
.join-form-col h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--indigo-dark);
  margin-bottom: 0.5rem;
}
.join-form-col > p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

/* Modal (shared: share story / list business) */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background: var(--white);
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 2.6rem 2.4rem;
  transform: translateY(14px);
  transition: transform 0.25s ease;
}
.modal.open .modal-card {
  transform: translateY(0);
}

.modal-card h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--indigo-dark);
  margin-bottom: 0.4rem;
}
.modal-card .modal-intro {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: color 0.2s ease;
}
.modal-close:hover {
  color: var(--indigo-dark);
}

.radio-row {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding-top: 0.3rem;
}
.radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  min-height: 44px;
}
.radio-row input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--gold);
}

.form-field input[type="file"] {
  padding: 0.6rem;
  font-size: 0.82rem;
  background: var(--cream);
}

/* Community photo gallery */
.gallery-section {
  background: var(--cream);
}
.gallery-section .section-sub {
  margin-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.6rem;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 60%, var(--gold) 160%);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item::after {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-light);
  background: rgba(17, 29, 63, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
  z-index: 2;
  transition: color 0.2s ease;
}
.lightbox-close:hover {
  color: var(--gold-light);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 146, 42, 0.35);
  border-color: var(--gold);
}
.lightbox-prev { left: 1.4rem; }
.lightbox-next { right: 1.4rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(245, 237, 216, 0.6);
  z-index: 2;
}

/* Floating WhatsApp button */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #1FA855;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(31, 168, 85, 0.4);
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.fab-whatsapp:hover {
  transform: scale(1.08);
  animation: none;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(31, 168, 85, 0.4);
  }
  50% {
    box-shadow: 0 4px 28px rgba(31, 168, 85, 0.65), 0 0 0 10px rgba(31, 168, 85, 0.1);
  }
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  bottom: 6.2rem;
  right: 2.45rem;
  width: 44px;
  height: 44px;
  background: var(--indigo);
  color: var(--sand);
  border: 1px solid rgba(201, 146, 42, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--indigo-mid);
}

/* Footer */
footer {
  background: #0C1428;
  color: rgba(245, 237, 216, 0.4);
  padding: 3.5rem 6vw 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 237, 216, 0.08);
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(245, 237, 216, 0.65);
  text-decoration: none;
}
.footer-logo span {
  color: var(--gold);
}

.footer-nav {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 216, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201, 146, 42, 0.1);
}

.footer-tagline {
  text-align: center;
  padding: 1.8rem 0;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(245, 237, 216, 0.45);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(245, 237, 216, 0.08);
}

.footer-founder {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(245, 237, 216, 0.7);
}
