/* =====================================================
   Israel Adejumo Theme — Main Stylesheet
   israeladejumo.com
   ===================================================== */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --white: #ffffff;
  --off-white: #f7f7f4;
  --text: #2a2a2a;
  --text-muted: #888888;
  --red: #c0392b;
  --nav-height: 80px;
  --border: #e2e2e2;
  --podcast-accent: #2d6a9f;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ── NAV ─────────────────────────────────────────────── */
.ia-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height); background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-circle { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--gold); overflow: hidden; flex-shrink: 0; background: var(--dark3); }
.logo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
.logo-text .title-line { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; }
.logo-text .name-line { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--dark); }
.logo-text .sub-line { font-size: 10px; color: var(--text-muted); }

ul.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
ul.nav-links li a { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: color 0.2s; position: relative; }
ul.nav-links li a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
ul.nav-links li a:hover { color: var(--gold); }
ul.nav-links li a:hover::after { width: 100%; }
ul.nav-links li.current-menu-item > a { color: var(--gold); }
ul.nav-links li.current-menu-item > a::after { width: 100%; }
.has-dropdown, li.menu-item-has-children { position: relative; }
.dropdown, .sub-menu { display: none; position: absolute; top: 28px; left: 0; background: var(--white); min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-top: 3px solid var(--gold); z-index: 999; list-style: none; padding: 0; }
.dropdown a, .sub-menu li a { display: block; padding: 11px 20px; font-size: 13px; border-bottom: 1px solid #f0f0f0; }
li.menu-item-has-children:hover .sub-menu,
.has-dropdown:hover .dropdown { display: block; }

.nav-search { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--gold); background: none; color: var(--gold); cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.nav-search:hover { background: var(--gold); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav-open ul.nav-links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: var(--white);
  padding: 12px 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 999;
  gap: 0;
  border-top: 3px solid var(--gold);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  animation: slideDown 0.25s ease forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-open ul.nav-links li a {
  font-size: 14px;
  padding: 13px 8px;
  display: block;
  border-bottom: 1px solid #f2f2f2;
  letter-spacing: 1px;
}
.mobile-nav-open ul.nav-links li:last-child > a { border-bottom: none; }
.mobile-nav-open .sub-menu {
  display: block;
  position: static;
  box-shadow: none;
  border: none;
  border-left: 3px solid var(--gold);
  margin: 0 0 8px 12px;
  background: var(--off-white);
  padding: 4px 0;
}
.mobile-nav-open .sub-menu li a {
  font-size: 12px;
  padding: 9px 14px;
  color: var(--text-muted);
  border-bottom: 1px solid #eee;
  letter-spacing: 0.5px;
}

/* Search overlay */
.search-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; align-items: center; justify-content: center; }
.search-overlay.open { display: flex; }
.search-inner { width: 90%; max-width: 600px; display: flex; flex-direction: column; gap: 16px; }
.search-inner form { display: flex; }
.search-inner input { flex: 1; padding: 18px 20px; font-size: 18px; border: 2px solid var(--gold); background: var(--dark3); color: var(--white); outline: none; font-family: 'Lato', sans-serif; }
.search-inner button[type=submit] { padding: 0 24px; background: var(--gold); border: none; color: var(--dark); font-size: 18px; cursor: pointer; }
.search-close { background: none; border: 1px solid #444; color: var(--white); padding: 10px 20px; cursor: pointer; font-family: 'Oswald', sans-serif; letter-spacing: 2px; font-size: 12px; text-transform: uppercase; align-self: flex-start; }

/* ── HERO ────────────────────────────────────────────── */
.hero { margin-top: var(--nav-height); height: 520px; position: relative; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.2) 100%), url('../images/hero-bg.jpg') center/cover no-repeat; }
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 80px; }
.hero-text { max-width: 600px; animation: fadeInUp 1s ease forwards; }
.hero-tag { display: inline-block; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 4px 14px; margin-bottom: 20px; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-text p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 30px; }
.hero-btn { display: inline-block; background: var(--gold); color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 14px 36px; text-decoration: none; transition: all 0.3s; }
.hero-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.hero-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.3s; }
.hero-dots span.active { background: var(--gold); }

/* ── SECTION HEADERS ─────────────────────────────────── */
.section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.section-header::before { content: ''; display: block; width: 40px; height: 3px; background: var(--gold); flex-shrink: 0; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--dark); }
.section-rule { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.section-rule::before { content: ''; display: block; width: 40px; height: 3px; background: var(--gold); flex-shrink: 0; }
.section-rule h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--dark); }

/* ── FEATURED VIDEO ──────────────────────────────────── */
.featured-video { padding: 70px 80px; background: var(--white); }
.video-main { display: grid; grid-template-columns: 1fr 1fr; background: var(--dark); margin-bottom: 28px; min-height: 300px; }
.video-info { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.video-label { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.video-label::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.video-info h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 14px; }
.video-info .date { font-size: 13px; color: var(--text-muted); }
.video-thumbnail { position: relative; overflow: hidden; background: var(--dark2); min-height: 260px; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: opacity 0.3s, transform 0.5s; }
.video-thumbnail:hover img { opacity: 0.9; transform: scale(1.04); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 66px; height: 66px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 20px rgba(192,57,43,0.5); }
.play-btn::after { content: ''; border-style: solid; border-width: 11px 0 11px 20px; border-color: transparent transparent transparent var(--white); margin-left: 4px; }
.play-btn:hover { background: #a93226; transform: translate(-50%,-50%) scale(1.1); }
.video-brand { position: absolute; bottom: 12px; right: 14px; font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; color: var(--white); background: rgba(0,0,0,0.5); padding: 4px 10px; letter-spacing: 2px; }
.sermon-grid { display: flex; flex-direction: column; gap: 0; }
.sermon-card { display: grid; grid-template-columns: 240px 1fr; border: none; border-bottom: 1px solid var(--border); overflow: hidden; transition: background 0.3s; background: var(--white); }
.sermon-card:hover { background: var(--off-white); box-shadow: none; }
.sermon-card-img { height: 160px; overflow: hidden; background: var(--dark3); }
.sermon-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.sermon-card:hover .sermon-card-img img { transform: scale(1.06); }
.sermon-card-body { padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.sermon-tag { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.sermon-tag::after { content: ''; display: block; width: 30px; height: 1px; background: var(--border); }
.sermon-card-body h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
.sermon-card-body h4 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.sermon-card:hover .sermon-card-body h4 a { color: var(--gold); }
.sermon-card-body .date { font-size: 12px; color: var(--text-muted); font-family: 'Oswald', sans-serif; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── SPEECHES + QUOTE ────────────────────────────────── */
.speeches-quote { padding: 60px 80px; background: var(--off-white); }
.speeches-quote-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.speeches-stack { display: flex; flex-direction: column; gap: 4px; }
.speech-card-featured { position: relative; height: 200px; overflow: hidden; cursor: pointer; }
.speech-card-featured img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); transition: transform 0.5s, filter 0.3s; }
.speech-card-featured:hover img { transform: scale(1.05); filter: brightness(0.75); }
.speech-overlay { position: absolute; inset: 0; padding: 20px 24px; display: flex; flex-direction: column; justify-content: flex-end; }
.speech-overlay .stag { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px; color: var(--gold); margin-bottom: 6px; }
.speech-overlay h4 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.3; }
.quote-block { background: var(--dark); padding: 50px 44px; display: flex; flex-direction: column; justify-content: center; }
.quote-icon { font-family: 'Playfair Display', serif; font-size: 80px; color: var(--gold); line-height: 0.6; margin-bottom: 28px; }
.quote-block blockquote { font-family: 'Playfair Display', serif; font-size: 18px; font-style: italic; color: var(--white); line-height: 1.75; margin-bottom: 20px; }
.quote-source { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.read-all-cta { padding: 24px 80px; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.read-all-cta a { display: flex; align-items: center; gap: 12px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); text-decoration: none; transition: color 0.2s; }
.read-all-cta a::before { content: ''; width: 40px; height: 2px; background: var(--gold); }
.read-all-cta a:hover { color: var(--gold); }

/* ── CONTENT CATS ────────────────────────────────────── */
.content-cats { padding: 60px 80px; background: var(--white); }
.cats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cat-card { background: var(--dark3); padding: 30px 24px 60px; cursor: pointer; position: relative; overflow: hidden; transition: background 0.3s; min-height: 160px; }
.cat-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover { background: #222; }
.cat-label { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.cat-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.cat-explore { position: absolute; bottom: 20px; left: 24px; display: flex; align-items: center; gap: 6px; font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; text-decoration: none; }

/* ── ABOUT STRIP ─────────────────────────────────────── */
.about-strip { background: var(--gold); padding: 60px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-strip h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.about-strip p { font-size: 15px; color: rgba(10,10,10,0.75); line-height: 1.8; margin-bottom: 16px; }
.about-btn { display: inline-block; background: var(--dark); color: var(--white); font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 13px 30px; text-decoration: none; transition: all 0.3s; }
.about-btn:hover { background: #222; transform: translateY(-2px); }
.about-img { height: 340px; overflow: hidden; box-shadow: 12px 12px 0 rgba(0,0,0,0.15); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── FOOTER CARDS ────────────────────────────────────── */
.footer-cards { background: var(--dark3); padding: 48px 80px; display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.footer-card { background: var(--dark2); padding: 28px 24px; cursor: pointer; position: relative; transition: background 0.3s; min-height: 130px; }
.footer-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.footer-card:hover { background: #1e1e1e; }
.footer-card:hover::after { transform: scaleX(1); }
.fc-tag { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.footer-card p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 20px; }
.fc-explore { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 6px; }

/* ── FOOTER ──────────────────────────────────────────── */
.ia-footer { background: var(--dark); padding: 56px 80px 0; }
.footer-logo { display: flex; flex-direction: column; align-items: center; margin-bottom: 32px; }
.footer-logo-circle { width: 80px; height: 80px; border-radius: 50%; border: 3px solid var(--gold); overflow: hidden; margin-bottom: 16px; background: var(--dark3); }
.footer-logo-circle img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
.f-title { font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; text-align: center; }
.f-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); text-align: center; }
.f-sub { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 4px; }
.footer-divider { border: none; border-top: 1px solid #2a2a2a; margin: 0 0 30px; }
.footer-bottom { text-align: center; padding-bottom: 40px; }
.footer-bottom .copy { font-size: 12px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.footer-bottom .copy a { color: var(--gold); text-decoration: none; }
.footer-label { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; justify-content: center; }
.footer-label::before, .footer-label::after { content: ''; width: 30px; height: 1px; background: #333; }
.social-links { display: flex; align-items: center; justify-content: center; gap: 20px; }
.social-links a { color: var(--text-muted); font-size: 18px; text-decoration: none; transition: color 0.2s, transform 0.2s; }
.social-links a:hover { color: var(--gold); transform: translateY(-3px); }

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero { margin-top: var(--nav-height); height: 280px; position: relative; overflow: hidden; background: var(--dark); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(20%); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.78) 35%, rgba(0,0,0,0.2) 100%); }
.page-hero-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 0 80px 44px; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: 58px; font-weight: 900; color: var(--white); line-height: 1; text-shadow: 0 2px 20px rgba(0,0,0,0.4); animation: fadeInUp 0.8s ease forwards; }
.page-hero-title span { color: var(--gold); }
.page-hero-collage { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; overflow: hidden; }
.col-img { overflow: hidden; }
.col-img:first-child { grid-row: span 2; }
.col-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%) brightness(0.65); }

/* ── ABOUT PAGE ──────────────────────────────────────── */
.biography { padding: 72px 80px; }
.bio-grid { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }
.bio-text p { font-size: 15.5px; line-height: 1.9; color: var(--text); margin-bottom: 18px; }
.bio-image-stack { display: flex; flex-direction: column; gap: 16px; }
.bio-img { width: 100%; aspect-ratio: 3/4; overflow: hidden; box-shadow: 8px 8px 0 var(--gold); }
.bio-img img { width: 100%; height: 100%; object-fit: cover; }
.bio-caption { font-size: 12px; color: var(--text-muted); font-style: italic; text-align: right; border-right: 3px solid var(--gold); padding-right: 12px; }
.man-banner { position: relative; height: 320px; overflow: hidden; background: var(--dark); }
.man-banner-bg { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0.65)), url('../images/man-banner.jpg') center/cover no-repeat; filter: grayscale(40%); }
.man-banner-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: flex-end; padding: 0 80px; }
.man-banner-text h2 { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 900; color: var(--white); line-height: 1.05; text-align: right; }
.man-banner-text h2 em { display: block; font-style: italic; color: var(--gold); }
.timeline-body { padding: 0 80px 80px; }
.timeline-section { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 0; margin-bottom: 0; }
.timeline-spine { display: flex; flex-direction: column; align-items: center; }
.spine-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); flex-shrink: 0; margin-top: 6px; }
.spine-line { width: 2px; flex: 1; background: var(--border); min-height: 40px; }
.timeline-left, .timeline-right { padding: 40px 32px; }
.timeline-left { text-align: right; }
.timeline-block h3 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.timeline-block h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.3; }
.timeline-block p { font-size: 14.5px; line-height: 1.85; color: #444; }
.timeline-full { padding: 40px 0; border-top: 1px solid var(--border); }
.timeline-full h3 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.timeline-full h4 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.timeline-full p { font-size: 14.5px; line-height: 1.9; color: #444; max-width: 860px; margin-bottom: 14px; }
.year-badge { display: inline-block; background: var(--dark); color: var(--gold); font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: 3px; padding: 8px 22px; margin-bottom: 24px; }
.labeled-divider { display: flex; align-items: center; gap: 20px; margin: 56px 0 40px; }
.labeled-divider::before, .labeled-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.labeled-divider span { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.honours-strip { background: var(--off-white); padding: 60px 80px; border-top: 1px solid var(--border); }
.honours-strip h3 { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.honours-strip h4 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.honours-strip p { font-size: 14.5px; line-height: 1.85; color: #444; max-width: 820px; }

/* ── SERMONS & PODCASTS ──────────────────────────────── */
.tab-bar { background: var(--white); border-bottom: 2px solid var(--border); display: flex; padding: 0 80px; position: sticky; top: var(--nav-height); z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.tab-btn { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); background: none; border: none; padding: 20px 28px; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color 0.2s, border-color 0.2s; display: flex; align-items: center; gap: 10px; }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-btn.active.podcast-tab { color: var(--podcast-accent); border-bottom-color: var(--podcast-accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.main-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 48px; padding: 56px 80px; max-width: 1300px; margin: 0 auto; }
.sermon-list { display: flex; flex-direction: column; }
.sermon-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--border); }
.sermon-item { cursor: pointer; }
.sermon-item h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 10px; transition: color 0.2s; }
.sermon-item h3 a { color: inherit; text-decoration: none; }
.sermon-item:hover h3 { color: var(--gold); }
.s-type { display: inline-flex; align-items: center; gap: 5px; font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.s-type i { color: var(--red); }
.s-date { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.podcast-list { display: flex; flex-direction: column; }
.podcast-item { display: grid; grid-template-columns: 88px 1fr auto; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.2s; }
.podcast-item:hover { background: var(--off-white); margin: 0 -16px; padding: 22px 16px; border-radius: 4px; border-bottom-color: transparent; }
.podcast-ep-num { width: 88px; height: 88px; background: var(--dark3); display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 4px; position: relative; overflow: hidden; }
.podcast-ep-num img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.ep-label { position: relative; font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.ep-num { position: relative; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--white); }
.podcast-info .p-tag { font-family: 'Oswald', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--podcast-accent); margin-bottom: 5px; }
.podcast-info h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 7px; }
.podcast-info .p-meta { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--text-muted); }
.podcast-play-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--podcast-accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(45,106,159,0.3); transition: all 0.2s; }
.podcast-play-btn i { color: var(--white); font-size: 14px; margin-left: 2px; }
.podcast-item:hover .podcast-play-btn { transform: scale(1.08); }
.audio-player-bar { background: var(--dark); border: 1px solid #2a2a2a; border-radius: 8px; padding: 16px 20px; margin-bottom: 32px; display: none; }
.audio-player-bar.visible { display: block; }
.apb-title { font-family: 'Playfair Display', serif; font-size: 14px; color: var(--white); margin-bottom: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.apb-controls { display: flex; align-items: center; gap: 12px; }
.apb-btn { background: none; border: none; color: var(--gold); cursor: pointer; font-size: 18px; }
.apb-progress { flex: 1; height: 4px; background: #333; border-radius: 2px; cursor: pointer; }
.apb-fill { height: 100%; background: var(--gold); border-radius: 2px; width: 0%; transition: width 0.1s; }
.apb-time { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--text-muted); letter-spacing: 1px; }
.sidebar-featured { border: 1px solid var(--border); overflow: hidden; margin-bottom: 32px; }
.sf-img { height: 200px; overflow: hidden; }
.sf-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.sidebar-featured:hover .sf-img img { transform: scale(1.05); }
.sf-body { padding: 20px; }
.sf-date { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; }
.sf-body h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.3; margin-bottom: 14px; }
.sf-link { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.subscribe-box { background: var(--dark); padding: 28px 24px; margin-bottom: 32px; }
.subscribe-box h4 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--white); margin-bottom: 8px; }
.subscribe-box p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.subscribe-box input { width: 100%; padding: 12px 14px; border: 1px solid #333; background: #1a1a1a; color: var(--white); font-size: 13px; margin-bottom: 10px; font-family: 'Lato', sans-serif; outline: none; }
.subscribe-box input:focus { border-color: var(--gold); }
.subscribe-box button { width: 100%; padding: 13px; background: var(--gold); color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; }
.platform-links { display: flex; flex-direction: column; gap: 10px; }
.platform-link { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid var(--border); text-decoration: none; color: var(--text); font-size: 13px; font-weight: 700; transition: all 0.2s; }
.platform-link:hover { border-color: var(--gold); color: var(--gold); }
.platform-link.youtube i { color: #ff0000; }
.platform-link.spotify i { color: #1db954; }
.platform-link.apple i { color: #fc3c44; }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-page-wrap { margin-top: var(--nav-height); min-height: calc(100vh - var(--nav-height) - 180px); display: grid; grid-template-columns: 1fr 1fr; }
.contact-left { padding: 72px 64px 72px 80px; display: flex; flex-direction: column; justify-content: center; animation: fadeInUp 0.7s ease forwards; }
.contact-left h1 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--dark); line-height: 1.25; margin-bottom: 36px; max-width: 480px; }
.contact-left h1 span { color: var(--gold); }
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px 18px; border: 1.5px solid var(--border); background: var(--white); font-family: 'Lato', sans-serif; font-size: 14px; color: var(--dark); outline: none; transition: border-color 0.25s, box-shadow 0.25s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group textarea { min-height: 140px; resize: vertical; }
.submit-btn { width: 100%; padding: 20px; background: var(--dark); color: var(--white); font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 8px; transition: background 0.3s; position: relative; overflow: hidden; }
.submit-btn::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--gold); transition: width 0.4s ease; z-index: 0; }
.submit-btn:hover::before { width: 100%; }
.submit-btn span, .submit-btn i { position: relative; z-index: 1; transition: color 0.3s; }
.submit-btn:hover span, .submit-btn:hover i { color: var(--dark); }
.contact-response { padding: 14px 18px; margin-top: 16px; border-radius: 2px; font-size: 14px; }
.contact-response.success { background: #f0f9f0; border: 1px solid #4caf50; color: #2e7d32; }
.contact-response.error { background: #fff0f0; border: 1px solid #e74c3c; color: #c0392b; }
.contact-right { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 60px 80px 60px 40px; background: var(--off-white); overflow: hidden; animation: fadeInUp 0.9s ease forwards; }
.founder-portrait { width: 320px; height: 320px; border-radius: 50%; overflow: hidden; border: 6px solid var(--white); box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 3px var(--gold); background: var(--dark3); }
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.founder-tag { text-align: center; margin-top: 28px; }
.ftag-name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.ftag-title { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.social-row { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.social-row a { color: var(--dark); font-size: 24px; text-decoration: none; transition: color 0.2s, transform 0.2s; }
.social-row a:hover { color: var(--gold); transform: translateY(-3px); }

/* ── PAGINATION ──────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 6px; padding: 40px 0 0; }
.pagination ul { display: flex; list-style: none; gap: 6px; }
.pagination ul li a, .pagination ul li span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 14px; border: 1px solid var(--border); background: none; color: var(--text); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.pagination ul li.current span { background: var(--dark); color: var(--white); border-color: var(--dark); }
.pagination ul li a:hover { border-color: var(--gold); color: var(--gold); }

/* ── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE — Full Mobile Overhaul
   Breakpoints: 1024px | 768px | 480px | 360px
   ===================================================== */

/* ── TABLET (max 1024px) ─────────────────────────────── */
@media(max-width: 1024px) {

  /* Global padding reduction */
  .featured-video, .speeches-quote, .read-all-cta,
  .content-cats, .about-strip, .footer-cards,
  .ia-footer, .biography, .honours-strip { padding-left: 40px; padding-right: 40px; }

  /* Nav */
  .ia-nav { padding: 0 24px; }

  /* Hero */
  .hero { height: 420px; }
  .hero-content { padding: 0 40px; }
  .hero-text h1 { font-size: 42px; }

  /* Homepage */
  .video-main { min-height: 260px; }
  .video-info { padding: 32px 28px; }
  .video-info h3 { font-size: 20px; }
  .sermon-card { grid-template-columns: 180px 1fr; }
  .speeches-quote-inner { gap: 0; }
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-strip { gap: 40px; padding: 48px 40px; }
  .about-strip h2 { font-size: 30px; }
  .about-img { height: 300px; }

  /* Footer */
  .footer-cards { grid-template-columns: 1fr 1fr; gap: 4px; }

  /* Sermons & Podcast page */
  .tab-bar { padding: 0 24px; }
  .tab-btn { padding: 18px 20px; font-size: 12px; }
  .main-wrap { grid-template-columns: 1fr; gap: 32px; padding: 48px 40px; }

  /* About page */
  .bio-grid { grid-template-columns: 1fr 280px; gap: 40px; }
  .timeline-body { padding: 0 40px 60px; }
  .man-banner { height: 260px; }
  .man-banner-text h2 { font-size: 52px; }

  /* Contact page */
  .contact-page-wrap { min-height: auto; }
  .contact-left { padding: 56px 40px; }
  .contact-right { padding: 48px 40px; }
  .founder-portrait { width: 260px; height: 260px; }

  /* News & Media */
  .section-wrap { padding: 48px 40px !important; }
}

/* ── MOBILE (max 768px) ──────────────────────────────── */
@media(max-width: 768px) {

  /* Global */
  :root { --nav-height: 70px; }

  /* Nav — hamburger mode */
  .ia-nav { padding: 0 20px; height: 70px; }
  .logo-circle { width: 48px; height: 48px; border-width: 2px; }
  .logo-text .title-line { font-size: 11px; letter-spacing: 1px; }
  .logo-text .name-line { font-size: 13px; }
  .logo-text .sub-line { display: none; }
  ul.nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-search { width: 32px; height: 32px; font-size: 13px; }

  /* Hero */
  .hero { height: 380px; margin-top: 70px; }
  .hero-content { padding: 0 20px; }
  .hero-tag { font-size: 10px; letter-spacing: 2px; padding: 3px 10px; }
  .hero-text h1 { font-size: 32px; line-height: 1.15; margin-bottom: 14px; }
  .hero-text p { font-size: 14px; margin-bottom: 22px; }
  .hero-btn { padding: 12px 28px; font-size: 12px; letter-spacing: 1.5px; }
  .hero-dots { bottom: 16px; }

  /* Section headers */
  .section-header h2, .section-rule h2 { font-size: 22px; }
  .section-header::before, .section-rule::before { width: 28px; }

  /* Featured video */
  .featured-video { padding: 40px 20px; }
  .video-main { grid-template-columns: 1fr; min-height: auto; }
  .video-info { padding: 28px 20px; }
  .video-label { font-size: 10px; }
  .video-info h3 { font-size: 18px; }
  .video-thumbnail { min-height: 220px; }
  .play-btn { width: 54px; height: 54px; }

  /* Sermon cards on homepage */
  .sermon-card { grid-template-columns: 1fr; }
  .sermon-card-img { height: 180px; }
  .sermon-card-body { padding: 16px 20px; }
  .sermon-card-body h4 { font-size: 16px; }

  /* Speeches + quote */
  .speeches-quote { padding: 40px 20px; }
  .speeches-quote-inner { grid-template-columns: 1fr; }
  .speech-card-featured { height: 170px; }
  .speech-overlay h4 { font-size: 15px; }
  .quote-block { padding: 36px 24px; }
  .quote-icon { font-size: 60px; margin-bottom: 20px; }
  .quote-block blockquote { font-size: 15px; line-height: 1.7; }
  .quote-source { font-size: 11px; }

  /* Read all CTA */
  .read-all-cta { padding: 18px 20px; }
  .read-all-cta a { font-size: 11px; letter-spacing: 1.5px; }

  /* Category cards */
  .content-cats { padding: 40px 20px; }
  .cats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { padding: 20px 16px 52px; min-height: 140px; }
  .cat-label { font-size: 9px; letter-spacing: 2px; }
  .cat-card p { font-size: 12px; }
  .cat-explore { font-size: 10px; bottom: 14px; left: 16px; }

  /* About strip */
  .about-strip { grid-template-columns: 1fr; gap: 0; padding: 40px 20px; }
  .about-strip h2 { font-size: 26px; margin-bottom: 12px; }
  .about-strip p { font-size: 14px; }
  .about-btn { padding: 11px 24px; font-size: 11px; }
  .about-img { height: 260px; order: -1; margin-bottom: 28px; }

  /* Footer cards */
  .footer-cards { grid-template-columns: 1fr 1fr; padding: 36px 20px; gap: 4px; }
  .fc-tag { font-size: 9px; }
  .footer-card p { font-size: 12px; margin-bottom: 14px; }
  .fc-explore { font-size: 10px; }

  /* Footer */
  .ia-footer { padding: 40px 20px 0; }
  .footer-logo-circle { width: 68px; height: 68px; }
  .f-name { font-size: 15px; }
  .footer-label { font-size: 9px; }
  .social-links a { font-size: 16px; }
  .social-links { gap: 16px; }

  /* Page hero (About, Sermons, News, Contact) */
  .page-hero { height: 200px; }
  .page-hero-collage { display: none; }
  .page-hero-overlay { padding: 0 20px 28px; }
  .page-hero-title { font-size: 32px; }

  /* About page */
  .biography { padding: 40px 20px; }
  .bio-grid { grid-template-columns: 1fr; gap: 32px; }
  .bio-img { aspect-ratio: 4/3; }
  .bio-text p { font-size: 14.5px; }
  .man-banner { height: 200px; }
  .man-banner-text { padding: 0 20px; justify-content: center; }
  .man-banner-text h2 { font-size: 36px; text-align: center; }
  .timeline-body { padding: 0 20px 48px; }
  .timeline-section { grid-template-columns: 1fr; }
  .timeline-spine { display: none; }
  .timeline-left { text-align: left; padding: 24px 0; border-left: 3px solid var(--gold); padding-left: 20px; }
  .timeline-right { padding: 24px 0; border-left: 3px solid var(--border); padding-left: 20px; }
  .timeline-block h3 { font-size: 11px; }
  .timeline-block h4 { font-size: 17px; }
  .timeline-block p { font-size: 14px; }
  .timeline-full { padding: 28px 0; }
  .timeline-full h4 { font-size: 18px; }
  .timeline-full p { font-size: 14px; }
  .year-badge { font-size: 18px; padding: 6px 16px; }
  .labeled-divider { margin: 36px 0 28px; }
  .labeled-divider span { font-size: 10px; letter-spacing: 2px; }
  .honours-strip { padding: 40px 20px; }
  .honours-strip h4 { font-size: 18px; }
  .honours-strip p { font-size: 14px; }

  /* Sermons page */
  .tab-bar { padding: 0 20px; overflow-x: auto; }
  .tab-btn { padding: 16px 16px; font-size: 11px; letter-spacing: 1.5px; white-space: nowrap; }
  .tab-btn i { font-size: 13px; }
  .main-wrap { grid-template-columns: 1fr; padding: 32px 20px; gap: 28px; }
  .sermon-row { grid-template-columns: 1fr; gap: 0; }
  .sermon-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
  .sermon-item h3 { font-size: 15px; }
  .s-date { font-size: 10px; }
  .podcast-item { grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px 0; }
  .podcast-ep-num { width: 72px; height: 72px; }
  .ep-num { font-size: 22px; }
  .podcast-info h3 { font-size: 15px; }
  .podcast-info .p-meta { gap: 10px; flex-wrap: wrap; font-size: 11px; }
  .podcast-play-btn { width: 38px; height: 38px; }
  .podcast-play-btn i { font-size: 12px; }
  .sidebar-featured { margin-bottom: 24px; }
  .sf-body h3 { font-size: 16px; }
  .subscribe-box { padding: 24px 20px; }
  .subscribe-box h4 { font-size: 16px; }
  .apb-title { font-size: 13px; }
  .apb-controls { gap: 8px; }
  .apb-btn { font-size: 16px; }

  /* Contact page */
  .contact-page-wrap { grid-template-columns: 1fr; min-height: auto; }
  .contact-left { padding: 40px 20px 32px; }
  .contact-left h1 { font-size: 26px; margin-bottom: 28px; }
  .form-group { margin-bottom: 12px; }
  .form-group input, .form-group textarea { padding: 14px 16px; font-size: 14px; }
  .form-group textarea { min-height: 120px; }
  .submit-btn { padding: 16px; font-size: 12px; letter-spacing: 2px; }
  .contact-right { padding: 32px 20px 40px; background: var(--off-white); }
  .founder-portrait { width: 200px; height: 200px; }
  .ftag-name { font-size: 17px; }
  .ftag-title { font-size: 10px; }
  .social-row { gap: 20px; margin-top: 24px; }
  .social-row a { font-size: 22px; }

  /* News & Media page */
  .section-wrap { padding: 40px 20px !important; }
  .page-hero-overlay { padding: 0 20px 28px; }
}

/* ── SMALL MOBILE (max 480px) ────────────────────────── */
@media(max-width: 480px) {

  /* Hero */
  .hero { height: 340px; }
  .hero-text h1 { font-size: 26px; }
  .hero-text p { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  /* Category cards — single column */
  .cats-grid { grid-template-columns: 1fr; gap: 8px; }
  .cat-card { padding: 18px 16px 48px; }

  /* Footer cards — single column */
  .footer-cards { grid-template-columns: 1fr; padding: 28px 16px; gap: 2px; }
  .footer-card { padding: 20px 18px; min-height: auto; }

  /* Page hero */
  .page-hero { height: 170px; }
  .page-hero-title { font-size: 26px; }

  /* About */
  .man-banner { height: 160px; }
  .man-banner-text h2 { font-size: 28px; }

  /* Sermons */
  .sermon-row { grid-template-columns: 1fr; }
  .podcast-item { grid-template-columns: 60px 1fr auto; gap: 10px; }
  .podcast-ep-num { width: 60px; height: 60px; }
  .ep-num { font-size: 18px; }
  .podcast-info h3 { font-size: 14px; }

  /* Contact */
  .contact-left h1 { font-size: 22px; }
  .founder-portrait { width: 170px; height: 170px; }

  /* Footer */
  .ia-footer { padding: 32px 16px 0; }
  .footer-logo-circle { width: 60px; height: 60px; }
  .f-name { font-size: 14px; }
  .social-links { gap: 14px; }
  .social-links a { font-size: 15px; }

  /* Tab bar scroll */
  .tab-bar { -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .tab-bar::-webkit-scrollbar { display: none; }
  .tab-btn { padding: 14px 14px; font-size: 10px; }

  /* Lightbox */
  #lbThumbs { gap: 4px; }
  #lbThumbs img { width: 52px !important; height: 52px !important; }
}

/* ── VERY SMALL MOBILE (max 360px) ──────────────────── */
@media(max-width: 360px) {
  .hero-text h1 { font-size: 22px; }
  .hero-btn { padding: 10px 22px; font-size: 11px; }
  .page-hero-title { font-size: 22px; }
  .ia-nav { padding: 0 14px; }
  .logo-text .title-line { display: none; }
  .logo-text .name-line { font-size: 12px; }
  .contact-left h1 { font-size: 20px; }
  .cats-grid { gap: 6px; }
  .cat-card { padding: 16px 14px 44px; }
  .man-banner-text h2 { font-size: 24px; }
}
