/* ================================================================
   NEMETH PUBLISHERS — style.css  v5
   Big logo · arisesalem.com split hero · journal covers
   Unique inner-page designs · Only WhatsApp float
   ================================================================ */

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

:root {
  --navy:      #0c2340;
  --navy-mid:  #153a6e;
  --navy-lt:   #1e5096;
  --navy-pale: #e8eef8;
  --gold:      #c79428;
  --gold-lt:   #deb04a;
  --gold-dk:   #a87620;
  --white:     #ffffff;
  --offwhite:  #f5f7fb;
  --cream:     #eef2f8;
  --border:    #d0d8e8;
  --text:      #0c1e35;
  --muted:     #3d5270;
  --light:     #6b7f96;
  --sh-s: 0 2px 8px rgba(12,35,64,.07);
  --sh-m: 0 6px 24px rgba(12,35,64,.13);
  --sh-l: 0 16px 48px rgba(12,35,64,.18);
  --r:  8px;
  --rl: 14px;
  --ease: .3s ease;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ================================================================
   HEADER — bigger logo
   ================================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  transition: box-shadow var(--ease);
}

.header.scrolled { box-shadow: var(--sh-m); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0;
  gap: 1.5rem;
}

/* LOGO — bigger, stacked */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 72px;          /* bigger logo */
  width: auto;
  object-fit: contain;
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .4px;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-tagline {
  font-size: .64rem;
  color: var(--light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

/* Nav */
.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-link {
  display: block;
  padding: .5rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  position: relative;
  transition: color var(--ease);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--navy);
  transition: width var(--ease);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: .5rem 1.1rem !important;
  margin-left: 8px;
  transition: background var(--ease), transform var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--navy-mid) !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px; padding: 6px;
  z-index: 1002; flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================================================
   HERO — arisesalem.com SPLIT LAYOUT
   Left: text content  |  Right: floating image/visual
   ================================================================ */
.hero {
  position: relative;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-lt) 100%);
  color: var(--white);
  padding: 130px 0 100px;
  margin-top: 82px;      /* taller header with big logo */
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
}

/* BG animated blobs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(199,148,40,.08);
  pointer-events: none;
}
.hero-blob-1 { width: 700px; height: 700px; top: -200px; right: -160px; animation: bfloat 20s ease-in-out infinite; }
.hero-blob-2 { width: 450px; height: 450px; bottom: -130px; left: -100px; animation: bfloat 26s ease-in-out infinite reverse; opacity:.6; }
.hero-blob-3 { width: 260px; height: 260px; top: 40%; left: 30%; animation: bfloat 15s ease-in-out infinite; opacity:.35; }

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 48px, rgba(255,255,255,.016) 48px, rgba(255,255,255,.016) 50px);
}

@keyframes bfloat {
  0%,100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-22px,32px) scale(1.04); }
  70%      { transform: translate(28px,-18px) scale(.97); }
}

/* SPLIT GRID */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* LEFT — text */
.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199,148,40,.15);
  border: 1px solid rgba(199,148,40,.4);
  color: var(--gold-lt);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 1.4rem;
  animation: fadeDown .7s ease both;
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 1.2rem;
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,.2);
  animation: fadeUp .8s ease .1s both;
}

.hero-title .accent {
  color: var(--gold-lt);
  position: relative;
  display: inline-block;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: left;
  animation: lineGrow 1s ease 1s both;
}

@keyframes lineGrow { from{transform:scaleX(0)} to{transform:scaleX(1)} }

.hero-desc {
  font-size: .97rem;
  line-height: 1.85;
  opacity: .85;
  margin-bottom: 1.8rem;
  animation: fadeUp .8s ease .25s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--rl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: .9rem 1.4rem;
  margin-bottom: 1.8rem;
  animation: fadeUp .8s ease .38s both;
  display: inline-flex;
  gap: 1.5rem;
}

.hstat { text-align: center; min-width: 54px; }
.hstat strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.hstat span {
  font-size: .68rem;
  opacity: .72;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px;
  display: block;
}
.sdiv { width: 1px; height: 34px; background: rgba(255,255,255,.15); flex-shrink: 0; }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .5s both;
}

.hero-checks {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  animation: fadeUp .8s ease .62s both;
}

.hcheck {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  opacity: .8;
}
.hcheck i { color: var(--gold-lt); font-size: .82rem; }

/* RIGHT — arisesalem-style visual panel */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel {
  position: relative;
  width: 100%;
}

/* Stacked info cards — arisesalem style */
.hp-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--rl);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--ease);
  margin-bottom: 1rem;
  animation: slideInRight .7s ease both;
}

.hp-card:hover { background: rgba(255,255,255,.16); transform: translateX(-4px); }
.hp-card:nth-child(1) { animation-delay: .4s; margin-left: 0; }
.hp-card:nth-child(2) { animation-delay: .55s; margin-left: 1.5rem; }
.hp-card:nth-child(3) { animation-delay: .7s; margin-left: 0; }
.hp-card:nth-child(4) { animation-delay: .85s; margin-left: 1.5rem; }
.hp-card:nth-child(5) { animation-delay: 1s; margin-left: 0; }

@keyframes slideInRight {
  from { opacity:0; transform: translateX(30px); }
  to   { opacity:1; transform: translateX(0); }
}

.hp-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-icon i { font-size: 1.1rem; color: var(--navy); }

.hp-info { flex: 1; }
.hp-abbr {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 2px;
}
.hp-name { font-size: .83rem; color: rgba(255,255,255,.88); line-height: 1.35; }

.hp-arrow { color: rgba(255,255,255,.4); font-size: .9rem; }

/* Bottom floating badges */
.hp-badge {
  position: absolute;
  right: -12px;
  background: var(--gold);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(199,148,40,.5);
  animation: badgeBounce 3s ease-in-out infinite;
  white-space: nowrap;
  z-index: 2;
}
.hp-badge-1 { bottom: 60px; animation-delay: 0s; }
.hp-badge-2 { bottom: 10px; animation-delay: 1.2s; }

@keyframes badgeBounce {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-5px) scale(1.04); }
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0; pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; }

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeDown { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)}  to{opacity:1;transform:translateY(0)} }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
.delay-5 { transition-delay: .40s; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  transition: var(--ease);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199,148,40,.4);
}

.btn-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--sh-s);
}

.btn-navy-solid {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy-solid:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--sh-s);
}

.btn-lg { padding: 14px 38px; font-size: .86rem; }

/* ================================================================
   SECTION BASE
   ================================================================ */
.section { padding: 88px 0; }
.bg-light { background: var(--offwhite); }
.bg-navy  { background: var(--navy); color: var(--white); }

.sec-hdr { text-align: center; margin-bottom: 3.5rem; }

.sec-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.sec-rule {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 0 auto .9rem;
  border-radius: 2px;
}
.sec-sub { font-size: .97rem; color: var(--muted); font-style: italic; }

/* ================================================================
   HOME — ABOUT SNIPPET
   ================================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text-col p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1.3rem;
}

.feat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-top: 1.6rem;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--r);
  transition: var(--ease);
}
.feat-item:hover { border-left-color: var(--gold); transform: translateX(4px); box-shadow: var(--sh-s); }
.feat-item i { color: var(--navy); font-size: 1.05rem; flex-shrink: 0; }
.feat-item span { font-size: .87rem; font-weight: 600; color: var(--text); }

/* Stats on right */
.about-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.astat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}

.astat-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--navy);
  transition: var(--ease);
}

.astat-box:hover { transform: translateY(-4px); box-shadow: var(--sh-m); }
.astat-box:hover::before { background: var(--gold); }

.astat-box strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .4rem;
}
.astat-box span { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }

/* ================================================================
   MISSION & VISION
   ================================================================ */
.mv-sec {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.mv-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-52deg, transparent, transparent 50px, rgba(255,255,255,.016) 50px, rgba(255,255,255,.016) 52px);
  pointer-events: none;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative; z-index: 1;
}

.mv-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 4px solid var(--gold);
  padding: 2.5rem 2rem;
  border-radius: var(--rl);
  text-align: center;
  transition: var(--ease);
}
.mv-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.22); }

.mv-icon {
  width: 70px; height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 4px 16px rgba(199,148,40,.35);
}
.mv-icon i { font-size: 1.55rem; color: var(--navy); }
.mv-card h3 { font-family: 'Merriweather', serif; font-size: 1.25rem; color: var(--white); margin-bottom: .9rem; }
.mv-card p  { color: rgba(255,255,255,.76); line-height: 1.85; font-size: .94rem; }

/* ================================================================
   JOURNALS GRID — with cover images
   ================================================================ */
.jgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.jcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ease);
  box-shadow: var(--sh-s);
}
.jcard:hover { transform: translateY(-6px); box-shadow: var(--sh-m); }

.jcard-cover {
  height: 190px;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.jcard-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}
.jcard:hover .jcard-cover img { transform: scale(1.05); }

.jcard-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(12,35,64,.7));
}

.jcard-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }

.jcard-abbr {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-lt);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 3px;
  margin-bottom: .7rem;
  align-self: flex-start;
}

.jcard h3 {
  font-family: 'Merriweather', serif;
  font-size: .96rem;
  color: var(--navy);
  line-height: 1.48;
  margin-bottom: .75rem;
  font-weight: 700;
  flex: 1;
}

.jcard p { font-size: .86rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; }

/* ================================================================
   SCOPE GRID
   ================================================================ */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}

.scope-item {
  background: var(--white);
  padding: 1.6rem 1rem;
  border-radius: var(--r);
  text-align: center;
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  transition: var(--ease);
  cursor: default;
}
.scope-item:hover { border-bottom-color: var(--navy); transform: translateY(-4px); box-shadow: var(--sh-s); }
.scope-item i { font-size: 1.8rem; color: var(--navy); margin-bottom: .6rem; display: block; transition: var(--ease); }
.scope-item:hover i { color: var(--gold-dk); }
.scope-item h4 { font-size: .8rem; font-weight: 700; color: var(--text); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-sec {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 12% 50%, rgba(199,148,40,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 88% 50%, rgba(30,80,150,.4) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { font-family: 'Merriweather', serif; font-size: clamp(1.6rem, 2.5vw, 2rem); color: var(--gold-lt); margin-bottom: 1rem; }
.cta-inner p  { font-size: 1rem; color: rgba(255,255,255,.82); line-height: 1.85; margin-bottom: 2rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.f-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.f-logo-img {
  height: 46px; width: auto;
  opacity: .85;
}
.f-logo-name { font-family: 'Merriweather', serif; font-size: .95rem; color: var(--gold-lt); font-weight: 700; }

.fcol p  { color: rgba(255,255,255,.58); font-size: .86rem; line-height: 1.85; }
.fcol h5 {
  font-size: .73rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: .9rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(199,148,40,.2);
}
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: .45rem; }
.fcol a { color: rgba(255,255,255,.56); font-size: .86rem; transition: var(--ease); }
.fcol a:hover { color: var(--gold-lt); padding-left: 4px; }

.f-contact-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  color: rgba(255,255,255,.56); font-size: .86rem; margin-bottom: .7rem;
}
.f-contact-list i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 16px; }

.footer-bottom {
  padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .8rem; }
.fbot-links a { color: rgba(255,255,255,.4); font-size: .76rem; margin: 0 .4rem; transition: var(--ease); }
.fbot-links a:hover { color: var(--gold); }

/* ================================================================
   PAGE HEADERS — unique per page
   ================================================================ */

/* Default page header (dark navy) */
.ph-default {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-lt) 100%);
  color: var(--white);
  padding: 130px 0 60px;
  margin-top: 82px;
  text-align: center;
  position: relative; overflow: hidden;
}
.ph-default::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-52deg, transparent, transparent 48px, rgba(255,255,255,.016) 48px, rgba(255,255,255,.016) 50px);
  pointer-events: none;
}
.ph-default h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  position: relative; z-index: 1;
  margin-bottom: .5rem;
}
.ph-default h1::after {
  content: '';
  display: block;
  width: 46px; height: 3px;
  background: var(--gold);
  margin: .65rem auto 0;
  border-radius: 2px;
}
.ph-default .ph-sub {
  font-size: .84rem;
  color: var(--gold-lt);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative; z-index: 1;
  margin-top: .4rem;
  display: block;
}

/* ABOUT — split header with decorative circle */
.ph-about {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4080 100%);
  padding: 130px 0 70px;
  margin-top: 82px;
  position: relative; overflow: hidden;
  color: var(--white);
}
.ph-about::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 420px; height: 420px;
  border: 60px solid rgba(199,148,40,.1);
  border-radius: 50%;
}
.ph-about-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; position: relative; z-index: 1; }
.ph-about-text h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.ph-about-text h1 span { color: var(--gold-lt); }
.ph-about-text p { font-size: 1rem; opacity: .8; max-width: 480px; line-height: 1.75; margin-top: .75rem; }
.ph-about-badges { display: flex; flex-direction: column; gap: .75rem; flex-shrink: 0; }
.ph-badge-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: .65rem 1.2rem;
  border-radius: 50px;
  font-size: .82rem; font-weight: 600; white-space: nowrap;
}
.ph-badge-pill i { color: var(--gold-lt); }

/* FOR AUTHORS — diagonal accent */
.ph-authors {
  background: var(--navy);
  padding: 130px 0 70px;
  margin-top: 82px;
  position: relative; overflow: hidden;
  color: var(--white);
}
.ph-authors::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--navy) 60%, var(--navy-lt) 100%);
}
.ph-authors::after {
  content: '';
  position: absolute;
  left: -100px; bottom: -100px;
  width: 500px; height: 500px;
  border: 80px solid rgba(199,148,40,.07);
  border-radius: 50%;
}
.ph-authors-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; position: relative; z-index: 1; }
.ph-authors h1 { font-family: 'Merriweather', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: .5rem; }
.ph-authors .ph-sub-text { font-size: 1rem; opacity: .78; margin-top: .5rem; line-height: 1.7; }
.ph-step-pills { display: flex; gap: .75rem; flex-wrap: wrap; }
.ph-step-pill {
  background: rgba(199,148,40,.2);
  border: 1px solid rgba(199,148,40,.35);
  color: var(--gold-lt);
  font-size: .76rem; font-weight: 700;
  padding: .5rem 1rem;
  border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px;
}

/* PUBLICATION ETHICS — geometric left border */
.ph-ethics {
  background: linear-gradient(135deg, #0a1c35 0%, var(--navy-mid) 100%);
  padding: 130px 0 60px;
  margin-top: 82px;
  position: relative; overflow: hidden;
  color: var(--white);
  border-left: 8px solid var(--gold);
}
.ph-ethics-inner { position: relative; z-index: 1; text-align: center; }
.ph-ethics h1 { font-family: 'Merriweather', serif; font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--white); margin-bottom: .75rem; }
.ph-ethics-icons { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.2rem; }
.ph-ethics-icon {
  width: 56px; height: 56px;
  background: rgba(199,148,40,.18);
  border: 1px solid rgba(199,148,40,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ph-ethics-icon i { color: var(--gold-lt); font-size: 1.3rem; }

/* ================================================================
   ABOUT PAGE — unique section designs
   ================================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.story-text h2 span { color: var(--gold-dk); }
.story-text p { font-size: 1rem; color: var(--muted); line-height: 1.95; margin-bottom: 1.2rem; }

.story-visual {
  position: relative;
}

.sv-main {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--rl);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.sv-main::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border: 30px solid rgba(199,148,40,.12);
  border-radius: 50%;
}

.sv-main h3 { font-family: 'Merriweather', serif; font-size: 1.1rem; color: var(--gold-lt); margin-bottom: 1.25rem; }

.sv-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }

.sv-stat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 1rem;
  text-align: center;
}
.sv-stat strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--gold-lt); font-family: 'Merriweather', serif; line-height: 1; margin-bottom: 4px; }
.sv-stat span { font-size: .72rem; opacity: .72; text-transform: uppercase; letter-spacing: .5px; }

.sv-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.sv-tag {
  background: rgba(199,148,40,.15);
  border: 1px solid rgba(199,148,40,.3);
  color: var(--gold-lt);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Indexing section — horizontal scroll cards */
.index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.index-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.5rem;
  transition: var(--ease);
}
.index-card:hover { transform: translateY(-4px); box-shadow: var(--sh-m); border-color: var(--navy); }

.index-card-icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: var(--ease);
}
.index-card:hover .index-card-icon { background: var(--navy); }
.index-card-icon i { font-size: 1.2rem; color: var(--navy); transition: var(--ease); }
.index-card:hover .index-card-icon i { color: var(--gold-lt); }

.index-card h4 { font-family: 'Merriweather', serif; font-size: .95rem; color: var(--navy); margin-bottom: .6rem; }
.index-card p  { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   FOR AUTHORS — step-based design
   ================================================================ */
.steps-timeline { position: relative; padding-left: 0; }

.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 31px; top: 64px;
  width: 2px; height: calc(100% + 2.5rem - 64px);
  background: var(--border);
}
.step-item:last-child::before { display: none; }

.step-num {
  width: 64px; height: 64px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--sh-m);
  position: relative; z-index: 1;
  transition: var(--ease);
}
.step-item:hover .step-num { background: var(--gold); color: var(--navy); }

.step-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.5rem 1.75rem;
  transition: var(--ease);
  border-left: 4px solid var(--navy);
}
.step-item:hover .step-content { border-left-color: var(--gold); box-shadow: var(--sh-s); }

.step-content h3 { font-family: 'Merriweather', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.step-content p  { font-size: .93rem; color: var(--muted); line-height: 1.85; }

/* Info cards row */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.info-card {
  background: var(--offwhite);
  border-radius: var(--rl);
  padding: 1.5rem;
  border-top: 4px solid var(--navy);
  transition: var(--ease);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--sh-m); border-top-color: var(--gold); }
.info-card i { font-size: 1.6rem; color: var(--navy); margin-bottom: .75rem; display: block; }
.info-card h4 { font-family: 'Merriweather', serif; font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.info-card p  { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ================================================================
   PUBLICATION ETHICS — cards with icon
   ================================================================ */
.ethics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.ethics-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 1.75rem;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.ethics-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--navy);
  transition: var(--ease);
}
.ethics-card:hover { transform: translateY(-4px); box-shadow: var(--sh-m); }
.ethics-card:hover::before { background: var(--gold); }

.ethics-card-icon {
  width: 50px; height: 50px;
  background: var(--cream);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: var(--ease);
}
.ethics-card:hover .ethics-card-icon { background: var(--navy); }
.ethics-card-icon i { font-size: 1.3rem; color: var(--navy); transition: var(--ease); }
.ethics-card:hover .ethics-card-icon i { color: var(--gold-lt); }
.ethics-card h3 { font-family: 'Merriweather', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: .75rem; }
.ethics-card ul { list-style: none; padding: 0; }
.ethics-card ul li {
  font-size: .88rem; color: var(--muted);
  padding: .35rem 0 .35rem 1.2rem;
  position: relative;
  border-bottom: 1px solid var(--cream);
  line-height: 1.55;
}
.ethics-card ul li:last-child { border-bottom: none; }
.ethics-card ul li::before { content: '›'; position: absolute; left: 0; color: var(--gold-dk); font-weight: 700; font-size: 1rem; top: .3rem; }

/* ================================================================
   JOURNALS PAGE — detail cards
   ================================================================ */
.jd-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--sh-s);
  transition: var(--ease);
}
.jd-card:hover { box-shadow: var(--sh-m); }

.jd-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 1.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  border-left: 6px solid var(--gold);
}
.jd-header h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.28rem;
  color: var(--white);
  flex: 1;
  margin: 0;
}
.jd-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}
.jd-cover {
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.jd-cover img {
  width: 100%; height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
.jd-content { padding: 1.75rem; }

.jd-section { margin-bottom: 1.5rem; }
.jd-section h3 {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .65rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.jd-section h3 i { color: var(--gold-dk); }
.jd-section p { font-size: .9rem; color: var(--muted); line-height: 1.85; }

.scope-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.scope-pill {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: .76rem;
  color: var(--muted);
  padding: 4px 12px;
  transition: var(--ease);
}
.scope-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.jd-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.jd-metric {
  background: var(--offwhite);
  padding: .85rem;
  border-radius: var(--r);
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: var(--ease);
}
.jd-metric:hover { background: var(--cream); border-bottom-color: var(--navy); }
.jd-metric strong { color: var(--navy); display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.jd-metric span   { font-size: .82rem; color: var(--muted); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }

.ci-card {
  background: var(--offwhite);
  padding: 1.4rem;
  border-radius: var(--rl);
  border-left: 5px solid var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--ease);
}
.ci-card:hover { border-left-color: var(--gold); box-shadow: var(--sh-s); }

.ci-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--gold-lt); font-size: 1rem; }
.ci-card h4 { font-family: 'Merriweather', serif; font-size: .88rem; color: var(--navy); margin-bottom: 3px; }
.ci-card p  { font-size: .87rem; color: var(--muted); line-height: 1.6; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 2.5rem;
  box-shadow: var(--sh-s);
  border-top: 5px solid var(--navy);
}
.contact-form-wrap h3 {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  margin-bottom: .35rem;
  font-size: .79rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Open Sans', sans-serif;
  font-size: .92rem;
  color: var(--text);
  background: var(--offwhite);
  transition: var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(12,35,64,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Journal contact cards */
.jcontact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.jc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  border-radius: var(--r);
  padding: 1.25rem;
  display: block;
  transition: var(--ease);
}
.jc-card:hover { border-top-color: var(--gold-dk); transform: translateY(-3px); box-shadow: var(--sh-m); }
.jc-card h4 { font-family: 'Merriweather', serif; color: var(--navy); font-size: 1rem; margin-bottom: .3rem; }
.jc-card p  { color: var(--muted); font-size: .83rem; margin-bottom: .6rem; line-height: 1.5; }
.jc-link    { color: var(--navy); font-weight: 700; font-size: .76rem; text-transform: uppercase; letter-spacing: .5px; }
.jc-card:hover .jc-link { color: var(--gold-dk); }

/* ================================================================
   WHATSAPP FLOAT  (only floating button)
   ================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem;
  z-index: 900;
  box-shadow: 0 4px 18px rgba(37,211,102,.42);
  transition: var(--ease);
}
.wa-float:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 7px 26px rgba(37,211,102,.55); }

/* Back to top */
.back-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 42px; height: 42px;
  background: var(--navy); color: var(--gold-lt);
  border: 1px solid rgba(199,148,40,.3);
  border-radius: 4px;
  display: none; align-items: center; justify-content: center;
  font-size: .95rem; z-index: 900;
  cursor: pointer; transition: var(--ease);
}
.back-top.show { display: flex; }
.back-top:hover { background: var(--navy-mid); transform: translateY(-3px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .jgrid          { grid-template-columns: 1fr 1fr; }
  .scope-grid     { grid-template-columns: repeat(4, 1fr); }
  .about-split    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats-col{ grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
  .hero-split     { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero           { min-height: auto; padding: 120px 0 90px; }
  .hero-right     { display: none; }   /* hide panel on tablet/mobile */
  .hero-left      { text-align: center; }
  .hero-badge     { margin: 0 auto 1.4rem; }
  .hero-stats     { justify-content: center; }
  .hero-btns      { justify-content: center; }
  .hero-checks    { justify-content: center; }
  .mv-grid        { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about-split    { grid-template-columns: 1fr; }
  .about-story    { grid-template-columns: 1fr; gap: 2.5rem; }
  .index-grid     { grid-template-columns: 1fr 1fr; }
  .jd-body        { grid-template-columns: 1fr; }
  .jd-cover       { height: 200px; }
  .jd-metrics     { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .info-cards     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; left: -110%;
    width: 82%; max-width: 300px;
    height: 100vh; height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 30px;
    gap: 0;
    transition: left .35s ease;
    box-shadow: 6px 0 28px rgba(0,0,0,.15);
    z-index: 1001; overflow-y: auto;
    border-right: 3px solid var(--navy);
  }
  .nav-menu.open { left: 0; }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream);
    width: 100%; font-size: .88rem;
  }
  .nav-cta { margin-left: 0; margin-top: 1.2rem; width: 100%; text-align: center; justify-content: center; display: flex; }

  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(12,35,64,.45); z-index: 1000;
  }
  .nav-overlay.open { display: block; }

  /* Reset page header margin */
  .ph-default, .ph-about, .ph-authors, .ph-ethics { margin-top: 75px; padding-top: 115px; }

  .section { padding: 60px 0; }
  .logo-img { height: 56px; }
  .jgrid { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .about-stats-col { grid-template-columns: 1fr 1fr; }
  .index-grid { grid-template-columns: 1fr; }
  .ethics-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .jd-metrics { grid-template-columns: 1fr 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .ph-about-inner { flex-direction: column; }
  .ph-about-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .ph-authors-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .step-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-num  { width: 50px; height: 50px; font-size: 1.1rem; }
}

@media (max-width: 540px) {
  .logo-img { height: 44px; }
  .logo-name { font-size: .95rem; }
  .logo-tagline { display: none; }
  .hero { padding: 105px 0 80px; }
  .hero-title { font-size: 1.65rem; }
  .hero-stats { flex-direction: column; gap: .6rem; padding: .75rem 1rem; }
  .sdiv { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-checks { display: none; }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .jd-metrics { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .sec-title { font-size: 1.45rem; }
  .wa-float { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-top { bottom: 18px; left: 18px; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
}

/* ================================================================
   HOMEPAGE — INDEXING DATABASES GRID
   ================================================================ */
.indexing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  max-width: 1080px;
  margin: 0 auto;
}
.index-logo {
  background: #fff;
  border: 1px solid var(--cream);
  border-radius: 10px;
  padding: 1.4rem 1rem;
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  box-shadow: 0 2px 8px rgba(10,29,59,.04);
}
.index-logo:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(10,29,59,.08);
}
.index-logo span {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3px;
}

@media (max-width: 960px){
  .indexing-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px){
  .indexing-grid { grid-template-columns: repeat(3, 1fr); gap: .8rem; }
  .index-logo { min-height: 72px; padding: 1rem .6rem; }
  .index-logo span { font-size: .78rem; }
}
@media (max-width: 460px){
  .indexing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   HOMEPAGE — EDITORIAL TEAM
   ================================================================ */
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.editorial-card {
  background: #fff;
  border: 1px solid var(--cream);
  border-radius: 14px;
  padding: 1.8rem 1.5rem 1.4rem;
  position: relative;
  box-shadow: 0 4px 14px rgba(10,29,59,.05);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.editorial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10,29,59,.1);
}
.ed-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  padding: .35rem .9rem;
  border-radius: 40px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  align-self: flex-start;
}
.ed-body h4 {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  font-size: 1.05rem;
  margin: 0 0 .55rem 0;
  line-height: 1.35;
}
.ed-affiliation {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: .7rem;
}
.ed-role {
  display: inline-block;
  font-size: .72rem;
  color: var(--gold-dk);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: .4rem;
  border-top: 1px solid var(--cream);
  width: 100%;
}
.btn-sm {
  font-size: .78rem;
  padding: .55rem 1rem;
  align-self: flex-start;
}

@media (max-width: 960px){
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .editorial-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PUBLICATION ETHICS — POLICIES ACCORDION
   ================================================================ */
.policies-accordion {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: .8rem;
}
.policy-item {
  background: #fff;
  border: 1px solid var(--cream);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--ease), border-color var(--ease);
}
.policy-item:hover { border-color: var(--gold); box-shadow: 0 6px 16px rgba(10,29,59,.06); }
.policy-head {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Merriweather', serif;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}
.policy-head i.pol-icon {
  color: var(--gold-dk);
  margin-right: .4rem;
}
.policy-head i.chev {
  color: var(--navy);
  font-size: .85rem;
  transition: transform var(--ease);
}
.policy-item.open .policy-head i.chev { transform: rotate(180deg); }
.policy-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 1.3rem;
}
.policy-item.open .policy-body {
  max-height: 1200px;
  padding: 0 1.3rem 1.2rem;
}
.policy-body p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.85;
  margin-bottom: .8rem;
}
.policy-body ul { padding-left: 1.3rem; margin-bottom: .8rem; }
.policy-body li { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: .3rem; }
