/* ===================================================
   Jonathan Obaje — Personal Site
   Design system: sunrise palette, energetic-but-modern
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --ink: #241F5D;
  --coral: #FF6B4A;
  --sunbeam: #FFC93C;
  --mint: #6FE3C4;
  --cloud: #FFFBF5;
  --charcoal: #17131F;
  --ink-soft: #3A3470;

  --bg: var(--cloud);
  --bg-alt: #FFF4E9;
  --text: #241A2E;
  --text-soft: #5C5468;
  --surface: #FFFFFF;
  --border: rgba(36,31,93,0.10);

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow: 0 12px 32px rgba(36,26,46,0.10);
  --max-w: 1180px;
}

[data-theme="dark"]{
  --bg: var(--charcoal);
  --bg-alt: #1F1A2B;
  --text: #F5F1F8;
  --text-soft: #B6ADC4;
  --surface: #241E30;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 12px 32px rgba(0,0,0,0.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height:1.6;
  transition: background .3s ease, color .3s ease;
}

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

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
  color: var(--text);
}

p{ margin:0 0 1em; color: var(--text-soft); max-width: 62ch; }

a{ color: inherit; text-decoration:none; }

.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 1rem;
  border: none;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn:focus-visible{ outline: 3px solid var(--sunbeam); outline-offset: 3px; }

.btn-primary{
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,107,74,0.35);
}
.btn-secondary{
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
[data-theme="dark"] .btn-secondary{ border-color: rgba(255,255,255,0.2); }

/* ---------- Nav ---------- */
.site-nav{
  position: sticky;
  top:0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:16px;
  padding-bottom:16px;
}
.logo{
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.35rem;
  color: var(--text);
  display:inline-flex;
  align-items:center;
  transition: transform .25s ease;
}
.logo:hover{ transform: scale(1.06) rotate(-1deg); }
.logo span{ color: var(--coral); display:inline-flex; }
.logo .letter{
  display:inline-block;
  opacity:0;
  transform: translateY(-46px) rotate(-8deg);
  animation: letter-fall .65s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes letter-fall{
  60%{ transform: translateY(4px) rotate(2deg); opacity:1; }
  100%{ opacity:1; transform: translateY(0) rotate(0deg); }
}
.logo.flame-active{
  animation: flame-flicker 1.6s ease-in-out infinite;
}
@keyframes flame-flicker{
  0%, 100%{
    text-shadow: 0 0 6px rgba(255,107,74,.55), 0 0 14px rgba(255,201,60,.35);
  }
  30%{
    text-shadow: 0 0 12px rgba(255,201,60,.75), 0 0 22px rgba(255,107,74,.5);
  }
  55%{
    text-shadow: 0 0 4px rgba(255,107,74,.4), 0 0 9px rgba(255,201,60,.25);
  }
  80%{
    text-shadow: 0 0 14px rgba(255,201,60,.65), 0 0 18px rgba(255,107,74,.45);
  }
}

.nav-links{
  display:flex;
  gap: 28px;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  font-weight:500;
  font-size: .98rem;
  color: var(--text-soft);
  position:relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active{ color: var(--coral); }

.nav-right{ display:flex; align-items:center; gap:18px; }

.theme-toggle{
  width:44px; height:44px;
  border-radius:50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  font-size: 1.1rem;
}

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  font-size:1.6rem; color: var(--text);
}

@media (max-width: 860px){
  .nav-links{
    position:absolute;
    top: 100%; left:0; right:0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    display:none;
  }
  .nav-links.open{ display:flex; }
  .nav-toggle{ display:block; }
}

/* ---------- Hero ---------- */
.hero{
  min-height: calc(100svh - 73px);
  display:flex;
  align-items:center;
  position: relative;
  overflow:hidden;
  background:
    radial-gradient(600px 400px at 85% 15%, rgba(255,201,60,0.20), transparent 60%),
    radial-gradient(700px 500px at 15% 85%, rgba(255,107,74,0.14), transparent 60%);
}
.hero .container{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-photo{ order:-1; }
}

.hero-eyebrow-name{
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 6px;
  opacity:0;
  transform: translateY(18px);
  animation: rise .8s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-tagline{
  font-family: var(--font-display);
  font-weight:500;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--coral);
  margin-bottom: 22px;
  opacity:0;
  transform: translateY(18px);
  animation: rise .8s cubic-bezier(.2,.8,.2,1) .15s forwards;
}
.hero-cta{
  display:flex; gap:16px; flex-wrap:wrap;
  opacity:0;
  transform: translateY(18px);
  animation: rise .8s cubic-bezier(.2,.8,.2,1) .3s forwards;
}
@keyframes rise{ to{ opacity:1; transform:none; } }

.hero-photo{
  position:relative;
  opacity:0;
  animation: fadeIn 1s ease .2s forwards;
}
@keyframes fadeIn{ to{ opacity:1; } }
.hero-photo .frame{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-photo .frame img{ width:100%; height:100%; object-fit:cover; }
.hero-photo .blob{
  position:absolute;
  width: 90%; height:90%;
  top: -6%; left: 6%;
  background: linear-gradient(135deg, var(--sunbeam), var(--coral));
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  z-index:-1;
  opacity:.55;
}

.scroll-cue{
  position:absolute;
  bottom: 28px; left:50%;
  transform: translateX(-50%);
  width: 26px; height:42px;
  border: 2px solid var(--text-soft);
  border-radius: 999px;
  opacity:.5;
}
.scroll-cue::before{
  content:'';
  position:absolute;
  top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px;
  background: var(--text-soft);
  border-radius:999px;
  animation: dot 1.6s ease infinite;
}
@keyframes dot{
  0%{ transform: translate(-50%,0); opacity:1; }
  70%{ transform: translate(-50%,14px); opacity:0; }
  100%{ opacity:0; }
}

/* ---------- Sections ---------- */
section{ padding: 96px 0; }
.section-alt{ background: var(--bg-alt); }

.section-head{ max-width: 620px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

/* Snapshot */
.snapshot{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:center;
}
@media (max-width: 860px){ .snapshot{ grid-template-columns:1fr; } }
.snapshot-visual{
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.snapshot-visual img{ width:100%; height:100%; object-fit:cover; object-position: top center; }

/* What I Do cards */
.cards{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 700px){ .cards{ grid-template-columns:1fr; } }
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.card .tag{
  display:inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight:600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom:16px;
}
.tag-faithex{ background: rgba(255,107,74,0.14); color: var(--coral); }
.tag-tutoring{ background: rgba(111,227,196,0.18); color: #1B8C6F; }
[data-theme="dark"] .tag-tutoring{ color: var(--mint); }
.card h3{ font-size:1.3rem; margin-bottom:10px; }
.card a.card-link{
  font-weight:600;
  color: var(--coral);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* Blog teaser */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px){ .blog-grid{ grid-template-columns:1fr; } }
.blog-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .thumb{ aspect-ratio: 16/10; overflow:hidden; }
.blog-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.blog-card .body{ padding: 22px; }
.blog-card .cat{
  font-size:.78rem; font-weight:600; letter-spacing:.02em;
  color: var(--coral); margin-bottom:8px; display:block;
}
.blog-card h3{ font-size:1.1rem; margin-bottom:8px; }
.blog-card p{ font-size:.92rem; margin-bottom:0; }

/* CTA band */
.cta-band{
  background: linear-gradient(120deg, var(--ink), var(--ink-soft));
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align:center;
  color:#fff;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color: rgba(255,255,255,0.75); margin: 0 auto 28px; }
.cta-band .hero-cta{ justify-content:center; opacity:1; animation:none; transform:none; }

/* ---------- Footer ---------- */
footer{
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}
.social-links{ display:flex; gap:14px; }
.social-links a{
  width:40px; height:40px;
  border-radius:50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, transform .2s ease;
}
.social-links a:hover{ background: var(--coral); transform: translateY(-2px); }
.social-links a:hover svg{ fill:#fff; }
.social-links svg{ width:18px; height:18px; fill: var(--text-soft); transition: fill .2s ease; }
.footer-copy{ font-size:.88rem; color: var(--text-soft); }

/* ---------- Story / inner pages ---------- */
.page-hero{
  padding: 64px 0 48px;
}
.page-hero .container{
  display:grid;
  grid-template-columns: 1fr .8fr;
  gap: 48px;
  align-items:center;
}
@media (max-width: 860px){ .page-hero .container{ grid-template-columns:1fr; } }
.page-hero-photo{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.page-hero-photo img{ width:100%; height:100%; object-fit:cover; }
.eyebrow-line{
  font-family: var(--font-display);
  font-weight:600;
  color: var(--coral);
  margin-bottom: 10px;
}

.prose{ max-width: 68ch; }
.prose p{ font-size: 1.05rem; }
.prose h2{ margin-top: 1.6em; font-size: 1.6rem; }

.research-block{
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 48px 0;
}
[data-theme="dark"] .research-block{ background: var(--surface); }

/* Form */
.jo-form{
  display:grid;
  gap: 18px;
  max-width: 560px;
}
.jo-form label{
  font-weight:600;
  font-size:.92rem;
  margin-bottom:6px;
  display:block;
}
.jo-form input,
.jo-form textarea,
.jo-form select{
  width:100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .98rem;
}
.jo-form input:focus,
.jo-form textarea:focus,
.jo-form select:focus{
  outline: none;
  border-color: var(--coral);
}
.jo-form textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size:.85rem; color: var(--text-soft); margin-top:-6px; }

/* ---------- Blog listing ---------- */
.filter-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 40px;
}
.filter-tab{
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--font-display);
  font-weight:600;
  font-size:.9rem;
  cursor:pointer;
  color: var(--text-soft);
  transition: background .2s ease, color .2s ease;
}
.filter-tab.active, .filter-tab:hover{
  background: var(--coral);
  color:#fff;
  border-color: var(--coral);
}
.blog-grid-listing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px){ .blog-grid-listing{ grid-template-columns:1fr; } }

.signup-band{
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align:center;
}
[data-theme="dark"] .signup-band{ background: var(--surface); }
.signup-form{
  display:flex;
  gap:12px;
  max-width: 460px;
  margin: 20px auto 0;
  flex-wrap:wrap;
  justify-content:center;
}
.signup-form input{
  flex:1;
  min-width: 220px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
}

/* ---------- Post page ---------- */
.post-header{ padding: 56px 0 32px; }
.post-header .cat{
  font-family: var(--font-display);
  font-weight:600;
  color: var(--coral);
  font-size:.9rem;
  display:block;
  margin-bottom:10px;
}
.post-header h1{ font-size: clamp(2rem, 4vw, 2.8rem); max-width: 20ch; }
.post-cover{
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 16/8;
  margin: 24px 0 8px;
}
.post-cover img{ width:100%; height:100%; object-fit:cover; }
.post-body{ padding: 24px 0 80px; }
.post-body .prose h2{ font-family: var(--font-display); }
.post-body .prose p{ font-size: 1.08rem; }
.back-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.back-link:hover{ color: var(--coral); }

/* ---------- Like button ---------- */
.like-bar{
  display:flex;
  align-items:center;
  gap: 14px;
  margin: 8px 0 48px;
}
.like-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-display);
  font-weight:600;
  font-size: .98rem;
  cursor:pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.like-btn:hover{ transform: translateY(-2px); }
.like-btn.liked{
  background: rgba(255,107,74,0.12);
  border-color: var(--coral);
  color: var(--coral);
}
.like-btn .heart{
  font-size: 1.15rem;
  display:inline-block;
  transition: transform .2s ease;
}
.like-btn.liked .heart{ animation: heart-pop .45s cubic-bezier(.34,1.56,.64,1); }
@keyframes heart-pop{
  0%{ transform: scale(1); }
  45%{ transform: scale(1.5); }
  100%{ transform: scale(1.15); }
}
.like-note{ font-size:.82rem; color: var(--text-soft); }

/* ---------- Work & Impact ---------- */
.impact-block{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:center;
  margin-bottom: 96px;
}
.impact-block.reverse .impact-visual{ order: 2; }
@media (max-width: 860px){
  .impact-block, .impact-block.reverse .impact-visual{ grid-template-columns:1fr; order:0; }
}
.impact-visual{
  border-radius: var(--radius-lg);
  overflow:hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.impact-visual img{ width:100%; height:100%; object-fit:cover; }

.testimonial-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 20px;
}
@media (max-width: 900px){ .testimonial-grid{ grid-template-columns:1fr; } }
.testimonial-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.testimonial-card p{
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
}
.testimonial-card p::before{ content:'“'; color: var(--coral); }
.testimonial-card p::after{ content:'”'; color: var(--coral); }
.testimonial-person{
  display:flex;
  align-items:center;
  gap: 12px;
}
.testimonial-person img{
  width: 46px; height:46px;
  border-radius:50%;
  object-fit:cover;
}
.testimonial-person .name{ font-weight:700; font-size:.92rem; }
.testimonial-person .role{ font-size:.82rem; color: var(--text-soft); }

.testimonial-note{
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 56px;
  font-size: .92rem;
  color: var(--text-soft);
}
[data-theme="dark"] .testimonial-note{ background: var(--surface); }

/* ---------- Gallery ---------- */
.gallery-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 36px;
}
.gallery-grid{
  columns: 3 260px;
  column-gap: 20px;
}
@media (max-width: 700px){ .gallery-grid{ columns: 1; } }
.gallery-item{
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  position:relative;
}
.gallery-item img{ width:100%; display:block; transition: transform .3s ease; }
.gallery-item:hover img{ transform: scale(1.04); }
.gallery-caption{
  padding: 12px 16px;
  background: var(--surface);
  font-size: .85rem;
  color: var(--text-soft);
}

.lightbox{
  position: fixed; inset:0;
  background: rgba(23,19,31,0.92);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.open{ display:flex; }
.lightbox img{ max-width: 90vw; max-height: 82vh; border-radius: var(--radius-md); }
.lightbox-close{
  position:absolute;
  top: 24px; right: 24px;
  width: 44px; height:44px;
  border-radius:50%;
  background: rgba(255,255,255,0.12);
  color:#fff;
  border:none;
  font-size:1.4rem;
  cursor:pointer;
}

/* ---------- Contact ---------- */
.contact-layout{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:start;
}
@media (max-width: 860px){ .contact-layout{ grid-template-columns:1fr; } }
.contact-photo{
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  margin-bottom: 28px;
}
.contact-photo img{ width:100%; height:100%; object-fit:cover; }
.contact-info-list{
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.contact-info-item{
  display:flex;
  align-items:center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}
.contact-info-item .icon{
  width: 42px; height:42px;
  border-radius:50%;
  background: rgba(255,107,74,0.12);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.contact-info-item svg{ width:20px; height:20px; fill: var(--coral); }
.contact-info-item .label{ font-size:.78rem; color: var(--text-soft); }
.contact-info-item .value{ font-weight:600; font-size:.98rem; }
.contact-info-item.whatsapp{
  background: rgba(111,227,196,0.10);
  cursor:pointer;
}

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.in-view{ opacity:1; transform:none; }

/* ---------- Drifting decorative shapes ---------- */
.hero::before, .hero::after,
.page-hero::before,
.cta-band::before{
  content:'';
  position:absolute;
  border-radius:50%;
  filter: blur(2px);
  opacity:.5;
  z-index:0;
  pointer-events:none;
}
.hero::before{
  width:70px; height:70px;
  background: var(--sunbeam);
  top: 12%; right: 8%;
  animation: drift1 7s ease-in-out infinite;
}
.hero::after{
  width:40px; height:40px;
  background: var(--mint);
  bottom: 18%; left: 6%;
  animation: drift2 8.5s ease-in-out infinite;
}
.page-hero{ position:relative; overflow:hidden; }
.page-hero::before{
  width:56px; height:56px;
  background: var(--sunbeam);
  top: 10%; right: 10%;
  animation: drift1 7s ease-in-out infinite;
}
.cta-band{ position:relative; overflow:hidden; }
.cta-band::before{
  width:90px; height:90px;
  background: var(--sunbeam);
  top: -20px; right: 6%;
  opacity:.18;
  animation: drift1 9s ease-in-out infinite;
}
@keyframes drift1{
  0%, 100%{ transform: translate(0,0); }
  50%{ transform: translate(-14px, 18px); }
}
@keyframes drift2{
  0%, 100%{ transform: translate(0,0); }
  50%{ transform: translate(16px, -14px); }
}

/* ---------- Livelier hovers ---------- */
.card:hover{ transform: translateY(-6px) rotate(-.5deg); box-shadow: var(--shadow); }
.blog-card:hover{ transform: translateY(-6px) rotate(.4deg); box-shadow: var(--shadow); }
.testimonial-card{ transition: transform .25s ease, box-shadow .25s ease; }
.testimonial-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow); }
.gallery-item{ transition: transform .3s ease, box-shadow .3s ease; }
.gallery-item:hover{ transform: translateY(-4px) scale(1.015); }
.btn-primary{ animation: none; }
.btn-primary:hover{ transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 30px rgba(255,107,74,0.45); }
.filter-tab{ transition: background .2s ease, color .2s ease, transform .2s ease; }
.filter-tab:hover{ transform: translateY(-2px); }
.social-links a{ transition: background .2s ease, transform .2s ease; }
.social-links a:hover{ transform: translateY(-3px) scale(1.08); }

/* ---------- Footer (FAITHEX-inspired) ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
  margin-top: 40px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 760px){ .footer-grid{ grid-template-columns:1fr; gap:36px; } }
.footer-brand .logo{ color:#fff; }
.footer-brand .logo span{ color: var(--sunbeam); }
.footer-brand p{ color: rgba(255,255,255,0.6); margin: 12px 0 20px; }
.site-footer .social-links a{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.1);
}
.site-footer .social-links svg{ fill: rgba(255,255,255,0.75); }
.site-footer .social-links a:hover{ background: var(--coral); }
.site-footer .social-links a:hover svg{ fill:#fff; }

.footer-col h4{
  font-family: var(--font-display);
  color: var(--sunbeam);
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a{
  display:block;
  color: rgba(255,255,255,0.65);
  font-size: .95rem;
  margin-bottom: 12px;
  transition: color .2s ease;
}
.footer-col a:hover{ color: var(--sunbeam); }

.footer-bottom{
  display:flex;
  flex-direction: column;
  align-items:center;
  text-align:center;
  gap:8px;
  padding: 24px 0;
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .footer-tagline{ color: var(--sunbeam); font-family: var(--font-display); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
