@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --cream: #FAF7F2;
  --sand: #F0EBE3;
  --gold: #C9A96E;
  --gold-light: #D4BC8B;
  --gold-dark: #A8874E;
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --forest-dark: #0F2921;
  --teal: #40916C;
  --sage-light: #D8F3DC;
  --charcoal: #2B2B2B;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --text-muted: #999;
  --white: #FFFFFF;
  --border: #E8E2D9;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1200px;
  --narrow: 800px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --tr: 0.3s var(--ease);
  --tr-slow: 0.6s var(--ease);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--tr); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.narrow { max-width: var(--narrow); margin: 0 auto; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(250,247,242,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,4vw,40px); }
.nav__logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--forest); line-height: 0; }
.nav__logo-icon { width: 38px; height: 38px; background: var(--forest); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; }
.nav__logo-img { height: 56px; width: auto; display: block; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: 0.85rem; font-weight: 500; color: var(--text); position: relative; }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--tr); }
.nav__link:hover::after, .nav__link--active::after { width: 100%; }
.nav__link:hover { color: var(--forest); }
.nav__cta { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; background: var(--forest); color: var(--white); border-radius: 100px; font-size: 0.82rem; font-weight: 600; letter-spacing: .02em; transition: var(--tr); }
.nav__cta:hover { background: var(--forest-light); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__hamburger span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: var(--tr); }
@media (max-width: 960px) {
  .nav__hamburger { display: flex; }
  .nav { background: var(--cream); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__links { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--cream); flex-direction: column; justify-content: flex-start; padding: 40px; gap: 24px; transform: translateX(100%); transition: var(--tr-slow); border-top: 1px solid var(--border); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
  .nav__links.active { transform: translateX(0); }
  .nav__link { font-size: 1.1rem; }
  .nav__logo-img { height: 46px; }
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--forest-dark); }
.hero__bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1564769625905-50e93615e769?w=1600&q=80'); background-size: cover; background-position: center; opacity: .25; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,41,33,0.85), rgba(27,67,50,0.7)); }
.hero__pattern { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a96e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero__content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 140px clamp(20px,4vw,40px) 80px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero__text { color: var(--white); }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.25); border-radius: 100px; font-size: .75rem; font-weight: 500; color: var(--gold-light); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 600; line-height: 1.15; margin-bottom: 24px; }
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,.78); margin-bottom: 36px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px rgba(0,0,0,.3); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__float { position: absolute; bottom: -16px; left: -24px; background: var(--white); border-radius: var(--r-md); padding: 18px 24px; box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.hero__float-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--forest); }
.hero__float-label { font-size: .78rem; color: var(--text-light); font-weight: 500; }
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; padding-top: 130px; }
  .hero__sub { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
}

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 100px; font-size: .88rem; font-weight: 600; letter-spacing: .02em; transition: var(--tr); white-space: nowrap; }
.btn--gold { background: var(--gold); color: var(--forest-dark); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,.3); }
.btn--white-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.3); }
.btn--white-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.btn--outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--white); }
.btn--dark { background: var(--forest); color: var(--white); }
.btn--dark:hover { background: var(--forest-light); transform: translateY(-2px); }
.btn--lg { padding: 16px 36px; font-size: .95rem; }
.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn--disabled, .res-card__link--disabled { opacity: .55; cursor: not-allowed; pointer-events: none; }
.btn--disabled:hover, .res-card__link--disabled:hover { background: transparent; color: var(--forest); border-color: var(--forest); transform: none; box-shadow: none; }
.btn--full { width: 100%; justify-content: center; }

/* SECTIONS */
.section { padding: clamp(60px,8vw,110px) 0; }
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }
.section--forest { background: var(--forest); color: var(--white); }
.section--cream { background: var(--cream); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section__label { display: inline-block; font-size: .73rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section__title { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.6rem); font-weight: 600; line-height: 1.2; margin-bottom: 14px; }
.section__title em { font-style: italic; color: var(--gold); }
.section__desc { font-size: 1rem; color: var(--text-light); line-height: 1.8; }
.section--forest .section__desc { color: rgba(255,255,255,.7); }

/* GRID CARDS */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }

.card { background: var(--white); border-radius: var(--r-lg); padding: 36px 28px; border: 1px solid var(--border); transition: var(--tr); position: relative; overflow: hidden; display: block; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--teal)); transform: scaleX(0); transform-origin: left; transition: var(--tr-slow); }
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.card__icon { width: 50px; height: 50px; border-radius: var(--r-md); background: var(--sage-light); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; color: var(--forest); }
.card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; color: var(--charcoal); }
.card__text { font-size: .88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.card__link { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--forest); }
.card__link:hover { gap: 10px; }

/* IMAGE CARD (events) */
.img-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--tr); }
.img-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.img-card__img { aspect-ratio: 16/9; overflow: hidden; }
.img-card__img img { width: 100%; height: 100%; object-fit: cover; transition: var(--tr-slow); }
.img-card:hover .img-card__img img { transform: scale(1.05); }
.img-card__body { padding: 24px; }
.img-card__date { font-size: .75rem; font-weight: 600; color: var(--gold-dark); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.img-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--charcoal); }
.img-card__text { font-size: .86rem; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; }

/* SPLIT LAYOUT */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,72px); align-items: center; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__image { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.split__image img { width: 100%; height: 100%; object-fit: cover; }
.split__content h2 { font-family: var(--font-display); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 600; line-height: 1.25; margin-bottom: 18px; }
.split__content h2 em { color: var(--gold); font-style: italic; }
.split__content p { color: var(--text-light); margin-bottom: 14px; line-height: 1.8; }
.split__content .btn { margin-top: 10px; }
@media (max-width: 768px) { .split, .split--reverse { grid-template-columns: 1fr; direction: ltr; } }

/* QUOTE BANNER */
.quote { background: var(--forest); position: relative; overflow: hidden; text-align: center; padding: 72px 20px; }
.quote__pattern { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a96e' fill-opacity='0.06'%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/svg%3E"); }
.quote__inner { position: relative; z-index: 2; max-width: 660px; margin: 0 auto; }
.quote__text { font-family: var(--font-display); font-size: clamp(1.2rem,2.5vw,1.6rem); font-weight: 400; font-style: italic; color: var(--white); line-height: 1.6; margin-bottom: 16px; }
.quote__source { font-size: .82rem; color: var(--gold-light); letter-spacing: .05em; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step { text-align: center; padding: 28px 20px; }
.step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--forest); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 18px; }
.step__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.step__text { font-size: .88rem; color: var(--text-light); line-height: 1.7; }

/* PAGE HERO */
.page-hero { background: var(--forest); padding: 140px 0 72px; position: relative; overflow: hidden; text-align: center; }
.page-hero__pattern { position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23c9a96e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-hero__content { position: relative; z-index: 2; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(2rem,4vw,3rem); color: var(--white); font-weight: 600; margin-bottom: 16px; }
.page-hero__sub { font-size: 1.02rem; color: rgba(255,255,255,.7); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.page-hero__crumb { margin-top: 20px; font-size: .82rem; color: rgba(255,255,255,.5); }
.page-hero__crumb a { color: var(--gold-light); }

/* CONTENT PROSE */
.prose { max-width: var(--narrow); margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 14px; color: var(--charcoal); }
.prose h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin: 28px 0 12px; color: var(--charcoal); }
.prose p { color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.prose ul li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--text-light); line-height: 1.7; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.prose strong { color: var(--charcoal); }

/* FAQ ACCORDION */
.faq-list { max-width: var(--narrow); margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--r-md); border: 1px solid var(--border); overflow: hidden; }
.faq-item__q { width: 100%; text-align: left; padding: 20px 24px; font-size: .95rem; font-weight: 600; color: var(--charcoal); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: var(--tr); }
.faq-item__q:hover { color: var(--forest); }
.faq-item__icon { font-size: 1.2rem; transition: var(--tr); flex-shrink: 0; color: var(--gold); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item__a-inner { padding: 0 24px 20px; color: var(--text-light); line-height: 1.8; font-size: .92rem; }
.faq-item.active .faq-item__a { max-height: 500px; }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }

/* TABS */
.tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 40px; }
.tab-btn { padding: 14px 32px; font-size: .9rem; font-weight: 600; border: 2px solid var(--forest); color: var(--forest); background: var(--white); cursor: pointer; transition: var(--tr); }
.tab-btn:first-child { border-radius: 100px 0 0 100px; }
.tab-btn:last-child { border-radius: 0 100px 100px 0; }
.tab-btn.active { background: var(--forest); color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* SHAHADAH */
.shahadah-box { background: var(--white); border-radius: var(--r-lg); padding: 48px; border: 1px solid var(--border); text-align: center; margin: 40px 0; }
.shahadah-box__ar { font-size: clamp(1.4rem,3vw,2rem); color: var(--forest); margin-bottom: 16px; line-height: 1.8; direction: rtl; }
.shahadah-box__en { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--text); margin-bottom: 12px; }
.shahadah-box__note { font-size: .85rem; color: var(--text-muted); }

/* DONATE TIERS */
.donate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.donate-card { background: var(--white); border-radius: var(--r-lg); padding: 36px 28px; border: 1px solid var(--border); text-align: center; transition: var(--tr); position: relative; }
.donate-card--feat { border-color: var(--gold); box-shadow: 0 12px 40px rgba(201,169,110,.15); }
.donate-card--feat::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--forest-dark); font-size: .7rem; font-weight: 700; padding: 4px 14px; border-radius: 100px; letter-spacing: .06em; text-transform: uppercase; }
.donate-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 16px; }
.donate-card__icon { font-size: 2rem; margin-bottom: 12px; }
.donate-card__text { font-size: .9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

/* RESOURCE CARD */
.res-card { background: var(--white); border-radius: var(--r-md); padding: 28px; border: 1px solid var(--border); display: flex; gap: 18px; align-items: flex-start; transition: var(--tr); }
.res-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,.06); }
.res-card__icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--sage-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--forest); }
.res-card__title { font-weight: 600; font-size: .95rem; margin-bottom: 4px; }
.res-card__desc { font-size: .86rem; color: var(--text-light); line-height: 1.6; margin-bottom: 8px; }
.res-card__link { font-size: .8rem; font-weight: 600; color: var(--forest); }

/* CONTACT FORM */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .84rem; font-weight: 600; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select { padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-body); font-size: .92rem; background: var(--white); transition: var(--tr); color: var(--text); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.15); }
.form-group textarea { resize: vertical; min-height: 130px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* CONTACT SUCCESS */
.contact-success { text-align: center; padding: 40px 20px; background: var(--sage-light); border: 1px solid var(--teal); border-radius: var(--r-md); }
.contact-success__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--forest); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; }
.contact-success__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--forest-dark); margin-bottom: 10px; }
.contact-success__text { font-size: .92rem; color: var(--text); line-height: 1.7; }

/* CTA */
.cta { position: relative; text-align: center; padding: 88px 20px; background: linear-gradient(135deg, var(--forest-dark), var(--forest)); overflow: hidden; }
.cta__inner { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
.cta h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.4rem); color: var(--white); font-weight: 600; margin-bottom: 14px; line-height: 1.25; }
.cta h2 em { color: var(--gold); font-style: italic; }
.cta p { color: rgba(255,255,255,.75); margin-bottom: 28px; font-size: 1rem; line-height: 1.7; }

/* FOOTER */
.footer { background: var(--forest-dark); color: var(--white); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand { max-width: 300px; }
.footer__logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.footer__logo-img { height: 110px; width: auto; display: block; object-fit: contain; background: transparent; }
.footer__brand p { font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 18px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: .82rem; color: var(--white); transition: var(--tr); }
.footer__social a svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-dark); }
.footer__heading { font-family: var(--font-display); font-size: .95rem; font-weight: 600; margin-bottom: 18px; color: var(--gold-light); }
.footer__links a { display: block; font-size: .84rem; color: rgba(255,255,255,.6); padding: 4px 0; transition: var(--tr); }
.footer__links a:hover { color: var(--white); padding-left: 4px; }
.footer__contact-item { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.footer__contact-item span { color: var(--gold); }
.footer__bottom { padding: 22px 0; text-align: center; font-size: .78rem; color: rgba(255,255,255,.4); }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* INFO BOX */
.info-box { background: var(--sand); border-radius: var(--r-md); padding: 28px; border: 1px solid var(--border); margin-bottom: 20px; }
.info-box__date { font-size: .75rem; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.info-box h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; color: var(--charcoal); margin-top: 0; }
.info-box p { color: var(--text-light); line-height: 1.7; margin-bottom: 0; }

/* CONTACT CARD */
.contact-card { display: flex; align-items: center; gap: 16px; padding: 18px; background: var(--white); border-radius: var(--r-md); border: 1px solid var(--border); margin-bottom: 14px; }
.contact-card__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-light); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-card__label { font-weight: 600; margin-bottom: 2px; color: var(--charcoal); font-size: .9rem; }
.contact-card__value { color: var(--forest); font-weight: 500; font-size: .9rem; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .15s; }
.stagger > *:nth-child(4) { transition-delay: .2s; }

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.full-span { grid-column: 1 / -1; }
