/* ============================================
   Isma'il ibn Ja'far — Sacred Archive
   Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ── CSS Variables ── */
:root {
  --emerald-deep: #0a3d2a;
  --emerald: #0f5132;
  --emerald-light: #165c3a;
  --black: #0e0e0e;
  --black-soft: #1a1a1a;
  --gold: #c5a55a;
  --gold-light: #d4b96e;
  --gold-dim: #8a7540;
  --parchment: #f4efe4;
  --parchment-dark: #e8e0d0;
  --parchment-mid: #d9d0c0;
  --cream: #faf8f2;
  --text-dark: #1c1c1c;
  --text-body: #2e2e2e;
  --text-light: #e8e0d0;
  --text-muted: #8a8272;
  --overlay-dark: rgba(10, 61, 42, 0.85);
  --overlay-black: rgba(14, 14, 14, 0.75);

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-arabic: 'Amiri', serif;

  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-med: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--parchment);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
  color: var(--emerald-deep);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 300; letter-spacing: 0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 500; }

p {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  color: var(--text-body);
}

.arabic-accent {
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 2;
}

/* ── Ornamental Divider ── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2.5rem auto;
  max-width: 300px;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ── Gate Page ── */
.gate-container {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--black);
  z-index: 10000;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.gate-container.gate-open {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.gate-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('images/geometric_pattern.png');
  background-size: 400px;
  background-repeat: repeat;
  opacity: 0.08;
  pointer-events: none;
}

.gate-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.gate-title {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gate-subtitle {
  font-family: var(--font-arabic);
  color: var(--gold-dim);
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.7;
}

.gate-input-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.gate-input {
  width: 320px;
  max-width: 80vw;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
  outline: none;
  transition: all var(--transition-med);
}

.gate-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(197, 165, 90, 0.15);
}

.gate-input.shake {
  animation: gateShake 0.5s ease;
  border-color: #a04040;
  box-shadow: 0 0 20px rgba(160, 64, 64, 0.3);
}

@keyframes gateShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-12px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-8px); }
  80% { transform: translateX(6px); }
}

.gate-btn {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-med);
}

.gate-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.gate-hint {
  color: var(--gold-dim);
  font-size: 0.8rem;
  margin-top: 1rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
  font-family: var(--font-body);
}

.gate-hint.visible {
  opacity: 1;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 165, 90, 0.15);
  transition: all var(--transition-med);
}

.site-nav.scrolled {
  padding: 0.6rem 3rem;
  background: rgba(14, 14, 14, 0.97);
}

.nav-logo {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

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

.nav-links a {
  color: var(--parchment-dark);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition-fast);
}

/* ── Hero Banner ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.5) 0%,
    rgba(10, 61, 42, 0.6) 50%,
    rgba(14, 14, 14, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero h1 {
  color: var(--parchment);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero .tagline {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-page {
  height: 70vh;
  min-height: 400px;
}

.hero-page .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform var(--transition-med);
  z-index: -1;
}

.btn:hover {
  color: var(--black);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-filled {
  background: var(--gold);
  color: var(--black);
}

.btn-filled::before {
  background: var(--gold-light);
}

/* ── Sections ── */
.section {
  padding: 6rem 2rem;
}

.section-dark {
  background: var(--black-soft);
  color: var(--text-light);
}

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

.section-dark p {
  color: var(--parchment-dark);
}

.section-emerald {
  background: var(--emerald-deep);
  color: var(--text-light);
}

.section-emerald h2,
.section-emerald h3 {
  color: var(--gold);
}

.section-emerald p {
  color: var(--parchment-dark);
}

.section-parchment {
  background: var(--parchment);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header .subtitle {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-size: 1.1rem;
  font-style: italic;
}

.section-dark .section-header .subtitle {
  color: var(--gold-dim);
}

/* ── Content Cards / Manuscript Blocks ── */
.manuscript-block {
  background: var(--cream);
  border: 1px solid var(--parchment-mid);
  padding: 3rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.manuscript-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--emerald-deep));
}

.manuscript-block h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.manuscript-block p {
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ── Quote Block ── */
.quote-block {
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--emerald-deep);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.section-dark .quote-text {
  color: var(--parchment);
}

.quote-attr {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

/* ── Two Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--parchment-mid);
}

/* ── Timeline ── */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--emerald-deep), var(--gold));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.55rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--parchment);
}

.section-dark .timeline-item::before {
  border-color: var(--black-soft);
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.timeline-item h4 {
  margin-bottom: 0.5rem;
}

/* ── Highlight Cards Grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--cream);
  border: 1px solid var(--parchment-mid);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-med);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 61, 42, 0.1);
  border-color: var(--gold);
}

.section-dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(197, 165, 90, 0.2);
}

.section-dark .card:hover {
  background: rgba(255,255,255,0.07);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card h4 {
  margin-bottom: 0.8rem;
}

/* ── Gallery Masonry ── */
.gallery-grid {
  column-count: 3;
  column-gap: 1.5rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(14, 14, 14, 0.85));
  color: var(--parchment);
  font-family: var(--font-heading);
  font-size: 1rem;
  transform: translateY(100%);
  transition: transform var(--transition-med);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter button {
  background: none;
  border: 1px solid var(--parchment-mid);
  padding: 0.5rem 1.8rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter button.active,
.gallery-filter button:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 165, 90, 0.08);
}

/* ── Contact Form ── */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--emerald-deep);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--parchment-mid);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-body);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

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

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details h3 {
  margin-bottom: 1.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-detail-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail-item span {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-detail-item a {
  color: var(--emerald-deep);
}

.contact-detail-item a:hover {
  color: var(--gold);
}

/* ── Social Icons ── */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  transition: fill var(--transition-fast);
}

.social-icons a:hover svg {
  fill: var(--black);
}

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: var(--parchment-dark);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(197, 165, 90, 0.15);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--parchment-dark);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 165, 90, 0.1);
  font-size: 0.85rem;
  color: rgba(222, 213, 195, 0.6);
}

.footer-bottom p {
  color: rgba(222, 213, 195, 0.6);
}

.footer-bottom a {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197, 165, 90, 0.3);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-dim);
  transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
  fill: var(--black);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Fullscreen Image Section ── */
.full-image-section {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.full-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.full-image-section .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(14, 14, 14, 0.6) 100%);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .gallery-grid {
    column-count: 2;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 0.8rem 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-med);
    border-left: 1px solid rgba(197, 165, 90, 0.15);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .manuscript-block {
    padding: 2rem 1.5rem;
  }

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

  .gallery-grid {
    column-count: 1;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }
}

/* ── Page Transition ── */
.page-wrapper {
  opacity: 0;
  animation: pageIn 0.8s ease forwards;
}

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 14, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-heading);
}
