/*!*****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./src/app/globals.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ink: #0D1B2A;
  --gold: #B8892A;
  --gold-light: #D4A843;
  --gold-pale: #F5E8C8;
  --cream: #FAF7F2;
  --cream-deep: #F0EAE0;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --muted: #6B6B6B;
  --border: #DDD4C4;
  --navy: #142847;
  --navy-mid: #1E3A5F;

    --sp-xs: clamp(0.5rem, 1vw, 0.75rem);
  --sp-sm: clamp(0.75rem, 1.5vw, 1rem);
  --sp-md: clamp(1rem, 2vw, 1.5rem);
  --sp-lg: clamp(1.5rem, 3vw, 2.5rem);
  --sp-xl: clamp(2rem, 4vw, 4rem);
  --sp-2xl: clamp(3rem, 6vw, 6rem);
  
  /* Fluid page padding */
  --page-pad: clamp(1rem, 4vw, 3rem)
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--ink);
  border-bottom: 1px solid rgba(184,137,42,0.3);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 68px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: capitalize;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  margin-left: auto; /* ✅ THIS FIXES IT */
}

.nav-links li a {
  display: block;
  padding: 0.5rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 500; 
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold-light);
}

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
}
/* ── HAMBURGER BUTTON (Hidden on Desktop) ── */
.nav-hamburger {
  display: none; /* Hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.28s ease;
}

/* Hamburger Animation when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU (Hidden on Desktop) ── */
.nav-mobile-menu {
  display: none; /* Hidden by default */
  position: fixed;
  top: 68px; /* Height of nav */
  left: 0; right: 0;
  background: var(--ink);
  border-top: 1px solid rgba(184,137,42,0.3);
  padding: 1rem 0 1.5rem;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-mobile-menu.open { display: block; }

.nav-mobile-menu li { list-style: none; }

.nav-mobile-menu li a {
  display: block;
  padding: 0.8rem var(--page-pad);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.nav-mobile-menu li a:hover,
.nav-mobile-menu li a.active {
  color: var(--gold-light);
  border-left-color: var(--gold);
  background: rgba(184,137,42,0.06);
}

.nav-mobile-menu li a.nav-cta {
  margin: 1rem var(--page-pad) 0;
  text-align: center;
  border-left: none !important;
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-radius: 2px;
}



/* ===== PAGE WRAPPER ===== */
.page-wrapper {
  padding-top: 68px;
}

/* ===== HERO ===== */
.hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  /* REMOVED min-height and max-height to fit content on large screens */
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(30,58,95,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,137,42,0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,137,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,137,42,0.05) 1px, transparent 1px);
   background-size: clamp(30px, 4vw, 60px) clamp(30px, 4vw, 60px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1800px; 
  margin: 0 auto;
  width: 100%;
  padding: 5rem 2rem; /* Padding controls the height now */
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(184,137,42,0.15);
  border: 1px solid rgba(184,137,42,0.4);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.8rem); /* Fluid font size */
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 1rem;
  gap: 1rem;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,137,42,0.2);
  border-radius: 4px;
  padding: 1.5rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.stat-card.accent {
  background: rgba(184,137,42,0.1);
  border-color: rgba(184,137,42,0.35);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-card.accent .stat-number { color: var(--gold-light); }

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== MARQUEE STRIP ===== */
.strip {
  background: var(--gold);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-inner {
  display: inline-flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip-item {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
}

.strip-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 1.5rem;
  opacity: 0.5;
}

/* ===== SECTION SHARED ===== */
.section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ===== FEATURED CONTENT ===== */
.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-gap: 1.5px;
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 3rem;
}

.featured-card {
  background: var(--white);
  padding: 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.featured-card:hover { background: var(--cream); }

.featured-card.large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  background: var(--navy);
  background-image: linear-gradient(160deg, var(--navy-mid) 0%, var(--ink) 100%);
}

.featured-card.large:hover { background: var(--navy); }

.featured-card.large .card-icon {
  font-size: 3rem;
  margin-bottom: auto;
  display: block;
}

.card-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.featured-card.large .card-tag { color: var(--gold-light); }

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.featured-card.large .card-title {
  color: var(--white);
  font-size: 1.8rem;
}

.card-body {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.featured-card.large .card-body { color: rgba(255,255,255,0.6); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
}

.card-link::after { content: '→'; }

.long-content {
  max-width: 900px;
  margin-top: 2rem;
}

.long-content p {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.long-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

/* ===== SHORTCUTS ===== */
.shortcuts-bg {
  background: var(--ink);
  padding: 5rem 0;
}

.shortcuts-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
  margin-top: 3rem;
}

.shortcut-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,137,42,0.15);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.shortcut-card:hover {
  background: rgba(184,137,42,0.08);
  border-color: rgba(184,137,42,0.4);
}

.shortcut-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.shortcut-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.shortcut-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ===== SEARCH SECTION ===== */
.search-section {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.search-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.search-bar {
  display: flex;
  margin-top: 2rem;
  border: 2px solid var(--ink);
  border-radius: 3px;
  overflow: hidden;
}

.search-tabs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.search-tab {
  padding: 0.35rem 1rem;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.15s;
}

.search-tab:hover, .search-tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.search-input {
  flex: 1 1;
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.search-btn {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--ink);
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(255,255,255,0.02);
  position: absolute;
  right: -2rem;
  top: -4rem;
  line-height: 1;
  pointer-events: none;
}

.about-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 700px;
}

.about-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  grid-gap: 5rem;
  gap: 5rem;
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.about-intro-label {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.about-intro-label span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-intro-text p {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin: 4rem 0;
}

.values-gridlarge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin: 4rem 0;
}

/* Add borders to each cell */
.values-gridlarge .value-card {
  padding: 1.2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Remove right border from last column */
.values-gridlarge .value-card:nth-child(4n) {
  border-right: none;
}

/* Remove bottom border from last row */
.values-gridlarge .value-card:nth-last-child(-n + 4) {
  border-bottom: none;
}

.values-gridsmall {
  display: grid;
  background: var(--navy);
  color: var(--white);
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin: 4rem 0;
}

.value-card {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-card:nth-child(3n) { border-right: none; }
.value-card:nth-child(n+4) { border-bottom: none; }

.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.value-text {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}



.cp-wrapper {
  font-family: 'Georgia', serif;
  background: #f6f1e8; /* cream */
    padding-top: 68px;    
  color: #1e2f45; /* navy text */
}

/* ─────────────────────────────────────────────
   HERO (NAVY)
───────────────────────────────────────────── */
.cp-hero {
  position: relative;
  background: #1e2f45;
  padding:  20px 40px 0 40px;
  overflow: hidden;
  border-bottom: 1px solid #d6c3a3;
  align-items: center;
}

.cp-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  height: 400px;
  padding: 20px 40px 0 40px;
  align-items: center;
   background-image:
    linear-gradient(rgba(184,137,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,137,42,0.05) 1px, transparent 1px);
   background-size: clamp(30px, 4vw, 60px) clamp(30px, 4vw, 60px);

}

.cp-hero-eyebrow {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6c3a3;
  border: 1px solid #d6c3a355;
  padding: 8px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.cp-hero-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cp-hero-sub {
  font-size: 15px;
  color: #d6c3a3;
  line-height: 1.7;
  max-width: 540px;
}

.cp-hero-grid-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(4, 1fr);
  opacity: 0.12;
  pointer-events: none;
}

.cp-hero-dot {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #d6c3a3;
  opacity: 0.4;
  justify-self: center;
  align-self: center;
}

/* ─────────────────────────────────────────────
   BODY LAYOUT
───────────────────────────────────────────── */
.cp-body {
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 32px 80px;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 32px;
  gap: 32px;
  align-items: start;
}

/* ─────────────────────────────────────────────
   LEFT COLUMN
───────────────────────────────────────────── */
.cp-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cp-left-label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7c93;
  margin-bottom: 8px;
  padding-left: 4px;
}

/* Cards */
.cp-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid #e4d8c8;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  transition: all 0.18s;
  border-left: 3px solid transparent;
}

.cp-card:hover {
  background: #f3ece3;
  border-color: #d6c3a3;
}

.cp-card--active {
  background: #f0e6d8;
  border-left-color: var(--card-accent, #c8a96e);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.cp-card-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: #6b7c93;
}

.cp-card-text {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

.cp-card-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e2f45;
}

.cp-card-tagline {
  font-size: 11px;
  color: #6b7c93;
  font-family: 'Courier New', monospace;
}

.cp-card-arrow {
  font-size: 14px;
  color: #c8a96e;
}

/* ─────────────────────────────────────────────
   DIRECTORY
───────────────────────────────────────────── */
.cp-directory {
  margin-top: 28px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e4d8c8;
  border-radius: 6px;
}

.cp-directory-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e2f45;
  margin-bottom: 10px;
  font-family: 'Courier New', monospace;
}

.cp-directory-note {
  font-size: 12px;
  color: #6b7c93;
  line-height: 1.65;
  margin-bottom: 14px;
  border-bottom: 1px solid #e4d8c8;
  padding-bottom: 14px;
}

.cp-directory-entry {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.cp-directory-label {
  font-size: 12px;
  font-weight: 600;
  color: #1e2f45;
}

.cp-directory-purpose {
  font-size: 11px;
  color: #6b7c93;
}

/* ─────────────────────────────────────────────
   RIGHT PANEL
───────────────────────────────────────────── */
.cp-panel {
  background: #ffffff;
  border: 1px solid #e4d8c8;
  border-radius: 8px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.cp-panel-header {
  display: flex;
  gap: 16px;
  padding-left: 20px;
  border-left: 4px solid #c8a96e;
  margin-bottom: 24px;
}

.cp-panel-icon {
  font-size: 22px;
}

.cp-panel-title {
  font-size: 22px;
  color: #1e2f45;
}

.cp-panel-tagline {
  font-size: 12px;
  color: #6b7c93;
  font-family: 'Courier New', monospace;
}

.cp-panel-desc {
  font-size: 15px;
  color: #4a5a6a;
  margin-bottom: 20px;
  border-bottom: 1px solid #e4d8c8;
  padding-bottom: 20px;
}

.cp-panel-detail p {
  font-size: 14px;
  color: #4a5a6a;
  margin-bottom: 14px;
}

/* ─────────────────────────────────────────────
   REQUIREMENTS
───────────────────────────────────────────── */
.cp-requirements {
  background: #f3f6f9;
  border: 1px solid #d6e0ea;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 24px;
}

.cp-requirements-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.cp-requirements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cp-requirements-list li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #4a5a6a;
}

/* ─────────────────────────────────────────────
   SUBJECT FORMAT
───────────────────────────────────────────── */
.cp-subject-format {
  background: #f9f6f1;
  border: 1px solid #e4d8c8;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 24px;
}

.cp-subject-label {
  font-size: 10px;
  color: #6b7c93;
  text-transform: uppercase;
}

.cp-subject-value {
  font-family: monospace;
  color: #c8a96e;
}

/* ─────────────────────────────────────────────
   CTA BUTTON
───────────────────────────────────────────── */
.cp-cta-btn {
  padding: 12px 28px;
  font-size: 13px;
  background: #1e2f45;
  color: #d6c3a3;
  border: 1px solid #d6c3a3;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

.cp-cta-btn:hover {
  background: #d6c3a3;
  color: #1e2f45;
}

/* TOP TABS */
.cp-top-tabs {
  display: flex;
  gap: 8px;
  padding: 20px 32px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
}

.cp-tab {
  padding: 10px 14px;
  font-size: 12px;
  border: 1px solid #e4d8c8;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.cp-tab--active {
  background: #f0e6d8;
  border-color: var(--tab-accent);
  color: var(--tab-accent);
}

/* NEW LAYOUT */
.cp-body-new {
  max-width: 100%;
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-gap: 32px;
  gap: 32px;
}

/* RIGHT SIDE */
.cp-address {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.mission-block {
  background: var(--navy);
  border-radius: 6px;
  padding: 4rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.mission-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184,137,42,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.mission-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}

.mission-block p {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 700px;
  position: relative;
}

/* ===== PUBLISH PAGE ===== */
.publish-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 3rem;
  gap: 0;
}

.pub-tab {
  padding: 1rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.pub-tab.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.pub-tab:hover:not(.active) { color: var(--ink); }

.publish-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0A1628 100%);
  padding: 6rem 2rem;
  position: relative;
}

.publish-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  align-items: center;
}

.publish-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.publish-hero p {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.publish-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  gap: 1rem;
}

.pub-mini {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,137,42,0.2);
  border-radius: 4px;
  padding: 1.5rem;
}

.pub-mini-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.pub-mini-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.browse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 3rem;
}

.browse-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}

.browse-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.1);
  transform: translateY(-2px);
}

.browse-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.browse-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.browse-desc {
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.oa-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 3rem;
}

.oa-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  border-top: 4px solid var(--gold);
}

.oa-card:nth-child(2) { border-top-color: var(--navy-mid); }
.oa-card:nth-child(3) { border-top-color: var(--ink); }

.oa-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.oa-desc {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.oa-tag {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  padding: 5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-gap: 3rem;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== POLICIES PAGE ===== */
.policies-hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

.policies-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.policies-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  /* Let main layout scroll naturally */
  overflow: hidden; 
}

.policies-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 90px;
  align-self: start;
  height: calc(100vh - 90px); /* full viewport minus offset */
  overflow-y: auto; /* independent scroll */
  padding-right: 1rem; /* optional, avoid content getting hidden under scrollbar */
}

.sidebar-section {
  margin-bottom: 2rem;
}

.sidebar-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.sidebar-link {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.4rem 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
  margin-left: -0.75rem;
}

.sidebar-link:hover { color: var(--ink); }
.sidebar-link.active { color: var(--ink); font-weight: 600; border-left-color: var(--gold); }

.policy-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.policy-article h2:first-child { margin-top: 0; }

.policy-article h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.policy-article p {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.policy-highlight {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
}

.policy-highlight p {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}
/* PlatformToolsPage.css */

/* ── Reset & base ── */
.pt-page-wrapper {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #f9f8f6;
  min-height: 100vh;
  color: #1a1a1a;
}

/* ── Hero ── */
.pt-hero {
  background: #0f1923;
  padding: 64px 0 56px;
  border-bottom: 3px solid #c8a96e;
}
.pt-hero-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
.pt-hero-label {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 18px;
  border: 1px solid #c8a96e44;
  padding: 4px 10px;
  border-radius: 2px;
}
.pt-hero-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: #f5f0e8;
  line-height: 1.2;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.pt-hero-desc {
  font-size: 16px;
  color: #8a9aaa;
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}

/* ── Tab bar ── */
.pt-tabbar {
  background: #fff;
  border-bottom: 1px solid #e2ddd5;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.pt-tabbar-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pt-tabbar-inner::-webkit-scrollbar { display: none; }

.pt-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  color: #6b6457;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}
.pt-tab:hover { color: #1a1a1a; }
.pt-tab--active {
  color: #0f1923;
  border-bottom-color: #c8a96e;
  font-weight: 600;
}
.pt-tab-icon {
  font-size: 14px;
  opacity: 0.7;
  font-family: 'Courier New', monospace;
}
.pt-tab--active .pt-tab-icon { opacity: 1; color: #c8a96e; }

/* ── Content area ── */
.pt-content {
  max-width: 95%;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

/* ── Section ── */
.pt-section { margin-bottom: 48px; }
.pt-section-header {
  padding-bottom: 28px;
  border-bottom: 1px solid #e2ddd5;
  margin-bottom: 24px;
}
.pt-section-heading {
  font-size: 24px;
  font-weight: 400;
  color: #0f1923;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.pt-section-intro {
  font-size: 15px;
  line-height: 1.75;
  color: #4a4540;
  margin: 0;
  max-width: 720px;
}

/* ── Subsections (accordion) ── */
.pt-subsections { display: flex; flex-direction: column; gap: 2px; }

.pt-subsection {
  background: #fff;
  border: 1px solid #e2ddd5;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.pt-subsection--open {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-color: #c8a96e44;
}

.pt-subsection-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 16px;
}
.pt-subsection-toggle:hover { background: #faf8f4; }

.pt-subsection-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}
.pt-subsection--open .pt-subsection-title { color: #0f1923; }

.pt-subsection-chevron {
  font-size: 20px;
  color: #c8a96e;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  font-family: 'Courier New', monospace;
}

.pt-subsection-body {
  padding: 4px 24px 24px;
  border-top: 1px solid #f0ebe3;
}
.pt-subsection-body p {
  font-size: 14.5px;
  line-height: 1.78;
  color: #3d3830;
  margin: 0 0 14px;
}
.pt-subsection-body p:last-child { margin-bottom: 0; }

/* ===== JOURNALS PAGE ===== */
.journals-hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
}

.journals-filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.5rem;
}

.filter-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-chip:hover, .filter-chip.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.journals-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

.journal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
  position: relative;
}

.journal-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.1);
  transform: translateY(-2px);
}

.journal-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--gold);
  border-radius: 6px 0 0 6px;
}

.journal-spine.blue { background: var(--navy-mid); }
.journal-spine.dark { background: var(--ink); }

.journal-subject {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.journal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.journal-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.journal-badge {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.2rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ===== PAGE INDICATOR ===== */
.page-indicator {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}

.page-dot.active { background: var(--ink); }

/* ===== PAGE TRANSITION ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-enter {
  animation: fadeIn 0.35s ease;
}

/* ================================================================
   AUTHORS PAGE STYLES
================================================================ */

/* Hero Section for Authors */
.authors-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--ink) 100%);
  padding: clamp(3rem, 8vw, 6rem) var(--page-pad);
  position: relative;
  overflow: hidden;
}

.authors-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.authors-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.authors-hero-intro {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 800px;
}

/* Layout with Sidebar */
.authors-layout {
  max-width: 1440px;
  margin: 0 auto;
  padding: var(--sp-2xl) var(--page-pad);
  display: grid;
  grid-template-columns: clamp(220px, 20vw, 280px) 1fr;
  grid-gap: clamp(2rem, 4vw, 4rem);
  gap: clamp(2rem, 4vw, 4rem);
}

/* Sidebar Navigation */
.authors-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--nav-h, 68px) + 1.5rem);
  align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 1rem;
  padding-top: 2rem;
}

.authors-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: whitesmoke;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
}

.authors-nav-link {
  display: block;
  font-size: 0.85rem;
  color: whitesmoke;
  text-decoration: none;
  padding: 0.6rem 0.5rem;
  border-left: 2px solid transparent;
  margin-bottom: 0.2rem;
  transition: all 0.2s;
  cursor: pointer;
}

.authors-nav-link:hover {
  color: white;
  background: rgba(27, 164, 243, 0.03);
}

.authors-nav-link.active {
  color: whitesmoke;
  font-weight: 600;
  border-left-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

/* Section Container */
.authors-section {
  margin-bottom: 4rem;
  scroll-margin-top: 100px; /* For anchor scrolling */
}

.authors-section-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.authors-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.authors-section-desc {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Card Grid System */
.authors-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

/* The "Attractive" Card */
.author-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  transition: all 0.2s ease;
  border-top: 4px solid transparent;
}

.author-card:hover {
  border-color: rgba(184, 137, 42, 0.3);
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
  transform: translateY(-3px);
  border-top-color: var(--gold);
}

.author-card-icon {
  width: 40px;
  height: 40px;
  background: var(--cream-deep);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.author-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.author-card p {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Timeline / Process Steps */
.process-timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.process-step {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 1;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Highlight Box */
.authors-highlight-box {
  background: rgba(184, 137, 42, 0.05);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}

.authors-highlight-box p {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for Authors Page */
@media (max-width: 1024px) {
  .authors-layout {
    grid-template-columns: 1fr;
  }
  
  .authors-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .authors-nav-title {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .authors-nav-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1rem;
    background: var(--cream);
    border-radius: 4px;
    font-size: 0.8rem;
  }

  .authors-nav-link.active {
    border-left: none;
    border-bottom-color: var(--gold);
    background: rgba(184, 137, 42, 0.1);
  }
}


/* ================================================================
   MOBILE RESPONSIVE (BREAKPOINT: 1024px)
================================================================ */
@media (max-width: 1024px) {
  /* Hide Desktop Nav, Show Hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile Hero: Keep it tall for visual impact */
  .hero {
     min-height: 70vh; /* Added min-height for mobile specifically */
  }

  /* Layout Adjustments */
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-right { max-width: 100%; margin: 0 auto; }
  
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-card.large { grid-column: 1 / -1; grid-row: auto; }
  
  .about-intro { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro-label { position: static; }
  
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
}

/* ================================================================
   MOBILE RESPONSIVE (BREAKPOINT: 768px)
================================================================ */
@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card.large { grid-column: 1; }
  
  .search-bar { flex-direction: column; }
  .search-input { border-bottom: 1px solid var(--border); }
  .search-btn { text-align: center; width: 100%; }
  
  .publish-hero-inner { grid-template-columns: 1fr; }
  .publish-cards { grid-template-columns: 1fr 1fr; }
  
  .policies-layout { grid-template-columns: 1fr; }
  .policies-sidebar {
    position: static;
    max-height: none;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 2rem;
  }
  
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   MOBILE RESPONSIVE (BREAKPOINT: 480px)
================================================================ */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; width: 100%; }
  
  .publish-cards { grid-template-columns: 1fr; }
  
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
