/* ═══════════════════════════════════════════
   GPH Community Premium — main.css v3.0
═══════════════════════════════════════════ */

:root {
  --forest:     #1a3a2a;
  --moss:       #2d5a3d;
  --sage:       #4a7c59;
  --mint:       #7fb896;
  --cream:      #f5f0e8;
  --warm-white: #faf8f4;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --charcoal:   #1c1c1c;
  --mid:        #5a5a5a;
  --light:      #9a9a9a;
  --border:     #e0dbd0;
  --nav-h:      72px;
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; line-height: 1.6; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }

/* ── NAVIGATION ──────────────────────────── */
#gph-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 900; font-size: 20px; color: var(--forest);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700;
  color: var(--cream); letter-spacing: 0.02em; line-height: 1.2;
}
.nav-logo-text span {
  display: block; font-size: 11px; font-weight: 400;
  color: var(--gold-light); letter-spacing: 0.08em; text-transform: uppercase;
}
/* WP custom logo link */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img { height: 48px; width: auto; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  color: rgba(245,240,232,0.82); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }

/* Nav CTA */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-login {
  color: var(--gold-light); font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid rgba(201,168,76,0.4); padding: 8px 18px; border-radius: 100px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-nav-login:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.btn-nav-join {
  background: var(--gold); color: var(--forest); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; padding: 9px 22px; border-radius: 100px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-nav-join:hover { background: var(--gold-light); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; background: none; border: none; cursor: pointer;
  gap: 5px; padding: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999;
  background: rgba(15,35,22,0.98);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  backdrop-filter: blur(12px);
}
.mobile-drawer.open { max-height: 500px; padding: 16px 0 24px; }
.mobile-drawer ul { list-style: none; }
.mobile-drawer li a {
  display: block; padding: 14px 32px;
  color: rgba(245,240,232,0.85); font-size: 16px; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mobile-drawer li a:hover { color: var(--gold-light); background: rgba(201,168,76,0.07); }
.mobile-login {
  color: var(--gold) !important; font-weight: 600 !important;
}
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.4);
}
.mobile-overlay.show { display: block; }

/* ── BUTTONS ─────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--forest);
  font-size: 15px; font-weight: 700; letter-spacing: 0.02em;
  padding: 15px 36px; border-radius: 100px;
  transition: all 0.25s; box-shadow: 0 8px 32px rgba(201,168,76,0.28);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(245,240,232,0.3); color: var(--cream);
  font-size: 15px; font-weight: 500;
  padding: 15px 36px; border-radius: 100px;
  transition: all 0.25s;
}
.btn-secondary:hover { border-color: rgba(245,240,232,0.7); background: rgba(245,240,232,0.06); }

/* ── SECTION HELPERS ─────────────────────── */
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 52px; flex-wrap: wrap; gap: 16px; }
.section-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage);
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--sage); border-radius: 1px; }
.section-title {
  font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 900;
  color: var(--forest); margin-top: 12px; position: relative;
}
.section-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 44px; height: 3px; background: var(--gold); border-radius: 2px; }
.view-all { color: var(--sage); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; transition: color 0.2s; }
.view-all:hover { color: var(--forest); }

/* ── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--forest) 0%, #0d2218 55%, #07130d 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 18% 52%, rgba(74,124,89,0.18) 0%, transparent 48%),
    radial-gradient(circle at 78% 18%, rgba(201,168,76,0.10) 0%, transparent 40%),
    radial-gradient(circle at 62% 80%, rgba(45,90,61,0.22) 0%, transparent 42%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: 0.035; pointer-events: none;
  background-image:
    linear-gradient(0deg,  transparent 24%, rgba(245,240,232,1) 25%, rgba(245,240,232,1) 26%, transparent 27%),
    linear-gradient(90deg, transparent 24%, rgba(245,240,232,1) 25%, rgba(245,240,232,1) 26%, transparent 27%);
  background-size: 80px 80px;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.10); border: 1px solid rgba(201,168,76,0.28);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.4)} }
.hero-eyebrow span { font-size: 12px; font-weight: 600; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 900; line-height: 1.05; color: var(--cream); margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc { font-size: 18px; font-weight: 300; line-height: 1.75; color: rgba(245,240,232,0.68); margin-bottom: 44px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 20px; z-index: 2;
}
.stat-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px; padding: 22px 30px; text-align: center;
  backdrop-filter: blur(6px);
}
.stat-num  { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label{ font-size: 11px; color: rgba(245,240,232,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* ── ABOUT STRIP ─────────────────────────── */
.about-strip {
  background: linear-gradient(135deg, var(--forest), #0d2218);
  padding: 72px 48px;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
}
.about-strip-divider { background: rgba(201,168,76,0.18); align-self: stretch; }
.about-strip-item { padding: 0 52px; text-align: center; }
.about-strip-num {
  font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 900;
  color: var(--gold); display: block; line-height: 1; margin-bottom: 8px;
}
.about-strip-item h3 { font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.about-strip-link { color: var(--cream); transition: color 0.2s; }
.about-strip-link:hover { color: var(--gold-light); }
.about-strip-desc { font-size: 13px; color: rgba(245,240,232,0.58); line-height: 1.65; }

/* ── FEATURED SECTION ────────────────────── */
.featured-section { padding: 96px 48px; background: var(--warm-white); }
.featured-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }

.post-card-large {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,58,42,0.08);
  display: block; transition: transform 0.3s, box-shadow 0.3s;
}
.post-card-large:hover { transform: translateY(-6px); box-shadow: 0 18px 52px rgba(26,58,42,0.14); }
.post-card-img { width: 100%; height: 310px; overflow: hidden; background: var(--moss); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card-large:hover .post-card-img img { transform: scale(1.04); }
.post-img-fallback {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: flex; align-items: center; justify-content: center;
}
.post-card-body { padding: 28px 32px 32px; }
.post-tag {
  display: inline-block; background: rgba(74,124,89,0.1); color: var(--sage);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px;
}
.post-title-large { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; line-height: 1.3; color: var(--forest); margin-bottom: 14px; }
.post-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--light); }
.post-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--light); }

.post-cards-stack { display: flex; flex-direction: column; gap: 18px; }
.post-card-small {
  background: #fff; border-radius: 14px; overflow: hidden;
  display: grid; grid-template-columns: 116px 1fr;
  box-shadow: 0 2px 12px rgba(26,58,42,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.post-card-small:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,58,42,0.12); }
.post-card-small-img { height: 108px; background: linear-gradient(135deg, var(--moss), var(--forest)); overflow: hidden; }
.post-card-small-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-small-body { padding: 18px 20px; }
.post-title-small { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; line-height: 1.4; color: var(--forest); margin-bottom: 8px; }
.post-date { font-size: 12px; color: var(--light); }

/* ── BLOGS GRID ──────────────────────────── */
.blogs-section { padding: 96px 48px; background: var(--warm-white); }
.blogs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.blog-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,58,42,0.07);
  display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 42px rgba(26,58,42,0.13); }
.blog-card-img { height: 196px; background: linear-gradient(135deg, var(--moss), var(--forest)); overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 26px 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--forest); line-height: 1.4; margin: 10px 0 auto; flex: 1; padding-bottom: 16px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.blog-card-date { font-size: 12px; color: var(--light); }
.blog-card-arrow { width: 30px; height: 30px; border-radius: 50%; background: rgba(74,124,89,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; color: var(--sage); }
.blog-card:hover .blog-card-arrow { background: var(--sage); color: #fff; }

/* CTA tile */
.blog-card-cta { background: var(--forest) !important; }
.blog-cta-body { display: flex; flex-direction: column; height: 100%; min-height: 280px; padding: 32px; }
.blog-cta-icon { font-size: 40px; margin-bottom: 16px; }
.blog-card-cta h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--cream); line-height: 1.3; margin-bottom: 12px; }
.blog-card-cta p  { font-size: 14px; color: rgba(245,240,232,0.6); line-height: 1.65; flex: 1; }
.cta-pill {
  display: inline-flex; align-items: center;
  margin-top: 24px; background: var(--gold); color: var(--forest);
  font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: 100px;
  width: fit-content; transition: background 0.2s;
}
.blog-card-cta:hover .cta-pill { background: var(--gold-light); }

/* ── MISSION ─────────────────────────────── */
.mission-section {
  padding: 96px 48px; background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.mission-text .section-label { margin-bottom: 20px; }
.mission-text h2 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--forest); line-height: 1.1; margin-bottom: 24px; }
.mission-text p  { font-size: 16px; line-height: 1.8; color: var(--mid); margin-bottom: 18px; }
.mission-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mission-card { background: #fff; border-radius: 16px; padding: 26px 22px; box-shadow: 0 4px 18px rgba(26,58,42,0.07); }
.mission-card-wide { grid-column: span 2; background: var(--forest); }
.mission-card-icon { font-size: 26px; margin-bottom: 12px; }
.mission-card-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.mission-card-wide .mission-card-title { color: var(--cream); }
.mission-card-desc { font-size: 13px; color: var(--mid); line-height: 1.65; }
.mission-card-wide .mission-card-desc { color: rgba(245,240,232,0.68); }

/* ── MEMBERSHIP CTA ──────────────────────── */
.membership-cta {
  background: linear-gradient(135deg, #0d2218, var(--forest));
  padding: 96px 48px; text-align: center;
}
.membership-cta-inner { max-width: 640px; margin: 0 auto; }
.membership-cta h2 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--cream); margin-bottom: 16px; line-height: 1.1; }
.membership-cta p  { font-size: 17px; color: rgba(245,240,232,0.65); margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── SOCIAL SECTION ──────────────────────── */
.social-section { background: var(--forest); padding: 80px 48px; text-align: center; }
.social-section h2 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: var(--cream); margin-bottom: 14px; }
.social-section p  { color: rgba(245,240,232,0.58); font-size: 16px; margin-bottom: 44px; }
.social-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(245,240,232,0.2); border-radius: 100px;
  padding: 11px 26px; color: var(--cream); font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,168,76,0.08); }
.social-icon { font-size: 16px; }

/* ── FOOTER ──────────────────────────────── */
footer { background: #09160f; padding: 64px 48px 36px; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo-link { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-link img { height: 44px; width: auto; }
.footer-logo-mark { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 18px; color: var(--forest); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--cream); }
.footer-brand-url  { font-size: 12px; color: var(--gold); }
.footer-brand-desc { font-size: 14px; color: rgba(245,240,232,0.45); line-height: 1.75; max-width: 300px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(245,240,232,0.35); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(245,240,232,0.62); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { font-size: 14px; color: rgba(245,240,232,0.62); margin-bottom: 8px; }
.footer-contact-item a { color: var(--gold); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-icons a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(245,240,232,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.48); font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.footer-social-icons a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(245,240,232,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy    { font-size: 13px; color: rgba(245,240,232,0.28); }
.footer-privacy { font-size: 13px; color: rgba(245,240,232,0.36); transition: color 0.2s; }
.footer-privacy:hover { color: var(--gold); }

/* ── INNER PAGES ─────────────────────────── */
.archive-main, .single-main, .page-main {
  padding-top: calc(var(--nav-h) + 56px);
  min-height: 80vh;
}
.archive-inner, .page-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px 80px; }
.archive-title { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--forest); margin-bottom: 48px; }

.single-article { max-width: 800px; margin: 0 auto; padding: 0 48px 80px; }
.single-header { margin-bottom: 40px; }
.single-title  { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--forest); line-height: 1.1; margin: 16px 0 20px; }
.single-meta   { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--light); }
.single-featured-img { border-radius: 16px; overflow: hidden; margin-bottom: 40px; max-height: 520px; }
.single-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.single-content { font-size: 17px; line-height: 1.85; color: #2a2a2a; }
.single-content h2, .single-content h3 { font-family: 'Playfair Display', serif; color: var(--forest); margin: 36px 0 16px; }
.single-content p  { margin-bottom: 20px; }
.single-content img { border-radius: 12px; margin: 28px 0; }
.single-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }

.page-title   { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--forest); margin-bottom: 36px; }
.page-content { font-size: 17px; line-height: 1.85; color: #2a2a2a; }
.page-content h2, .page-content h3 { font-family: 'Playfair Display', serif; color: var(--forest); margin: 36px 0 16px; }
.page-content p { margin-bottom: 20px; }

.pagination { margin-top: 56px; display: flex; justify-content: center; }
.pagination .nav-links { gap: 8px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--mid); transition: all 0.2s;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.no-posts { font-size: 18px; color: var(--mid); margin-top: 40px; }

/* ── ANIMATIONS ──────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  #gph-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  .hero-stats { display: none; }
  .featured-section, .blogs-section, .mission-section { padding: 64px 24px; }
  .featured-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; padding: 56px 24px; gap: 40px; }
  .about-strip-divider { display: none; }
  .about-strip-item { padding: 0; }
  .mission-section { grid-template-columns: 1fr; gap: 40px; }
  .blogs-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 48px 24px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .social-section { padding: 64px 24px; }
  .membership-cta { padding: 72px 24px; }
  .archive-inner, .page-inner { padding: 0 24px 64px; }
  .single-article { padding: 0 24px 64px; }
}
@media (max-width: 640px) {
  .section-title { font-size: 32px; }
  .blogs-grid { grid-template-columns: 1fr; }
  .hero h1  { font-size: 38px; }
  .single-title { font-size: 32px; }
  .archive-title { font-size: 32px; }
  .membership-cta h2 { font-size: 34px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
}
