/*
Theme Name: GetWitty Pro
Template: twentytwentyfive
Version: 1.0
Author: GetWitty Design Team
Description: Professional black, gold, and white theme for GetWitty content network.
*/

/* ============================================
   GETWITTY PRO - CUSTOM STYLES
   Black | Gold | White Theme
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --gw-black: #0A0A0A;
  --gw-black-light: #141414;
  --gw-dark: #1B1B1B;
  --gw-dark-gray: #2A2A2A;
  --gw-gold: #C5A059;
  --gw-gold-bright: #D4AF37;
  --gw-gold-light: #E8D5A3;
  --gw-gold-pale: #F5EED6;
  --gw-white: #FFFFFF;
  --gw-offwhite: #F8F8F8;
  --gw-gray: #888888;
  --gw-gray-light: #E5E5E5;
}

/* ---- BASE OVERRIDES ---- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  color: #333;
  background: var(--gw-white);
  overflow-x: hidden;
}

/* ---- FULL WIDTH LAYOUT ---- */
.wp-block-group.alignfull,
.wp-block-cover.alignfull {
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
  color: var(--gw-black) !important;
}

h1 { font-weight: 700 !important; letter-spacing: -0.02em !important; }
h2 { font-weight: 600 !important; letter-spacing: -0.01em !important; }
h3 { font-weight: 600 !important; }

/* Gold accent headings */
.gw-heading-gold,
.has-gold-color {
  color: var(--gw-gold) !important;
}

/* ---- NAVIGATION ---- */
.site-header {
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), rgba(10,10,10,0.9)) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(197,160,89,0.15) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
}

.site-header * {
  color: var(--gw-white) !important;
}

.site-header a:hover {
  color: var(--gw-gold) !important;
}

/* Navigation menu */
.wp-block-navigation-item a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  transition: color 0.3s ease !important;
}

.wp-block-navigation-item a:hover {
  color: var(--gw-gold) !important;
}

.wp-block-navigation-item.current-menu-item a {
  color: var(--gw-gold) !important;
}

/* ---- HERO SECTION ---- */
.gw-hero {
  background: linear-gradient(135deg, var(--gw-black) 0%, var(--gw-dark) 50%, var(--gw-black-light) 100%) !important;
  position: relative;
  overflow: hidden;
}

.gw-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(197,160,89,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gw-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gw-gold), transparent);
}

.gw-hero-tagline {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--gw-gold) !important;
}

.gw-hero-title {
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  background: linear-gradient(135deg, var(--gw-gold) 0%, var(--gw-gold-light) 50%, var(--gw-white) 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.gw-hero-subtitle {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
}

/* ---- NICHE/SUBSITE CARDS ---- */
.gw-niche-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gw-niche-card {
  background: linear-gradient(145deg, var(--gw-white) 0%, var(--gw-offwhite) 100%);
  border: 1px solid var(--gw-gray-light);
  border-radius: 16px;
  padding: 32px;
  text-decoration: none !important;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.gw-niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gw-gold), var(--gw-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.gw-niche-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(197,160,89,0.15), 0 8px 24px rgba(0,0,0,0.08);
  border-color: rgba(197,160,89,0.3);
}

.gw-niche-card:hover::before {
  transform: scaleX(1);
}

.gw-niche-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gw-black) 0%, var(--gw-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(197,160,89,0.2);
}

.gw-niche-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: var(--gw-black) !important;
  margin: 0 0 8px 0 !important;
}

.gw-niche-url {
  font-family: 'Inter', monospace !important;
  font-size: 0.75rem !important;
  color: var(--gw-gold) !important;
  letter-spacing: 0.05em !important;
  text-transform: lowercase !important;
}

.gw-niche-desc {
  font-size: 0.85rem !important;
  color: var(--gw-gray) !important;
  margin-top: 12px !important;
  line-height: 1.6 !important;
}

/* ---- FOOTER ---- */
.site-footer,
footer {
  background: var(--gw-black) !important;
  border-top: 1px solid rgba(197,160,89,0.2) !important;
  color: rgba(255,255,255,0.6) !important;
}

.site-footer h2,
.site-footer h3,
.site-footer .wp-block-heading {
  color: var(--gw-gold) !important;
  font-family: 'Playfair Display', serif !important;
}

.site-footer a {
  color: rgba(255,255,255,0.6) !important;
  transition: color 0.3s ease !important;
}

.site-footer a:hover {
  color: var(--gw-gold) !important;
}

.site-footer .wp-block-group {
  background: transparent !important;
}

/* Footer logo area */
.gw-footer-brand {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--gw-white) !important;
}

.gw-footer-tagline {
  color: var(--gw-gold) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* ---- BUTTONS ---- */
.wp-block-button__link {
  background: linear-gradient(135deg, var(--gw-gold) 0%, var(--gw-gold-bright) 100%) !important;
  color: var(--gw-black) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 8px !important;
  padding: 14px 32px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(197,160,89,0.3) !important;
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197,160,89,0.4) !important;
  background: linear-gradient(135deg, var(--gw-gold-bright) 0%, var(--gw-gold-light) 100%) !important;
}

/* Dark button variant */
.gw-btn-dark {
  background: linear-gradient(135deg, var(--gw-black) 0%, var(--gw-dark) 100%) !important;
  color: var(--gw-gold) !important;
  border: 1px solid var(--gw-gold) !important;
  box-shadow: none !important;
}

.gw-btn-dark:hover {
  background: var(--gw-gold) !important;
  color: var(--gw-black) !important;
}

/* ---- DIVIDERS ---- */
.gw-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gw-gold), var(--gw-gold-light));
  margin: 20px auto;
}

.gw-divider-wide {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gw-gold-pale), transparent);
  margin: 30px auto;
}

/* ---- SECTION STYLES ---- */
.gw-section-dark {
  background: linear-gradient(135deg, var(--gw-black) 0%, var(--gw-dark) 100%);
  color: var(--gw-white);
}

.gw-section-light {
  background: var(--gw-white);
}

.gw-section-cream {
  background: linear-gradient(135deg, #FAF7F0 0%, var(--gw-offwhite) 100%);
}

/* ---- SUBSITE HEADER BANNERS ---- */
.gw-subsite-header {
  background: linear-gradient(135deg, var(--gw-black) 0%, var(--gw-dark) 60%, var(--gw-dark-gray) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 60px !important;
}

.gw-subsite-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(197,160,89,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(197,160,89,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.gw-subsite-header h1 {
  background: linear-gradient(135deg, var(--gw-gold) 0%, var(--gw-gold-light) 60%, var(--gw-white) 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
}

.gw-subsite-header p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 1.1rem !important;
}

/* ---- POST CARDS ---- */
.wp-block-post-template .wp-block-post {
  background: var(--gw-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid var(--gw-gray-light);
}

.wp-block-post-template .wp-block-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(197,160,89,0.12);
  border-color: rgba(197,160,89,0.2);
}

.wp-block-post-template .wp-block-post-title a {
  color: var(--gw-black) !important;
  font-family: 'Playfair Display', serif !important;
  transition: color 0.3s ease !important;
}

.wp-block-post-template .wp-block-post-title a:hover {
  color: var(--gw-gold) !important;
}

/* ---- MEET OUR WRITERS PAGE ---- */
.gw-writer-card {
  background: var(--gw-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  transition: all 0.4s ease;
  border: 1px solid var(--gw-gray-light);
}

.gw-writer-card:hover {
  box-shadow: 0 12px 40px rgba(197,160,89,0.15);
  transform: translateY(-4px);
  border-color: rgba(197,160,89,0.25);
}

.gw-writer-name {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: var(--gw-black) !important;
}

.gw-writer-location {
  font-size: 0.75rem !important;
  color: var(--gw-gold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.gw-writer-persona {
  font-size: 0.75rem !important;
  color: var(--gw-gray) !important;
  background: var(--gw-gold-pale);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.gw-writer-quote {
  font-family: 'Playfair Display', serif !important;
  font-style: italic;
  font-size: 0.9rem !important;
  color: var(--gw-gold) !important;
  border-left: 3px solid var(--gw-gold-pale);
  padding-left: 16px;
  margin-top: 12px;
}

.gw-writer-section-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.8rem !important;
  text-align: center;
  color: var(--gw-black) !important;
}

.gw-writer-section-url {
  text-align: center;
  color: var(--gw-gold) !important;
  font-size: 0.85rem !important;
}

/* ---- ANIMATIONS ---- */
@keyframes gwFadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.gw-animate-in {
  animation: gwFadeInUp 0.8s ease forwards;
}

.gw-delay-1 { animation-delay: 0.1s; }
.gw-delay-2 { animation-delay: 0.2s; }
.gw-delay-3 { animation-delay: 0.3s; }
.gw-delay-4 { animation-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .gw-niche-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .gw-niche-card {
    padding: 24px;
  }

  .gw-writer-card {
    flex-direction: column;
  }

  .gw-writer-card img {
    width: 100% !important;
    height: 200px !important;
  }
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gw-black);
}

::-webkit-scrollbar-thumb {
  background: var(--gw-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gw-gold-bright);
}

/* ---- POST CONTENT STYLING ---- */
.entry-content p {
  line-height: 1.8 !important;
  font-size: 1.05rem !important;
}

.entry-content h2 {
  color: var(--gw-black) !important;
  border-bottom: 2px solid var(--gw-gold);
  padding-bottom: 12px;
  margin-top: 48px !important;
}

.entry-content h3 {
  color: var(--gw-gold) !important;
  margin-top: 36px !important;
}

.entry-content blockquote {
  border-left: 4px solid var(--gw-gold);
  background: var(--gw-gold-pale);
  padding: 24px 32px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.entry-content a {
  color: var(--gw-gold) !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.entry-content a:hover {
  border-bottom-color: var(--gw-gold);
}

/* ---- WITT POWERED BY SECTION ---- */
.gw-witt-section {
  background: linear-gradient(135deg, var(--gw-black) 0%, var(--gw-dark) 100%);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gw-witt-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(197,160,89,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.gw-witt-section p {
  color: rgba(255,255,255,0.7) !important;
  position: relative;
  z-index: 1;
}

.gw-witt-brand {
  color: var(--gw-gold) !important;
  font-weight: 600 !important;
}

/* Subsite category badge */
.gw-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gw-black) 0%, var(--gw-dark) 100%);
  color: var(--gw-gold) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(197,160,89,0.3);
}

.gw-category-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gw-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(197,160,89,0.5);
}


/* ============================================
   ADDITIONAL OVERRIDES FOR TWENTY TWENTY-FIVE
   ============================================ */

/* Force full width layout */
.site-main > .entry-content {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.entry-content > * {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Remove page title on homepage */
.page .entry-header,
.home .entry-header,
.front-page .entry-header {
  display: none !important;
}

/* Make the content area full bleed */
.entry-content .alignfull {
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  max-width: 100vw !important;
  width: 100vw !important;
}

/* Override Twenty Twenty-Five max-width constraints */
body .is-layout-constrained > .alignwide,
body .is-layout-constrained > .alignfull {
  max-width: 100% !important;
}

/* Fix the niche grid to actually be multi-column */
.gw-niche-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)) !important;
  gap: 24px !important;
  padding: 0 !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

@media (min-width: 768px) {
  .gw-niche-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 1024px) {
  .gw-niche-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Fix main content area to be full width */
.site-main {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Remove default entry content padding/margins */
.entry-content {
  margin-top: 0 !important;
  padding: 0 !important;
}

/* Override Twenty Twenty-Five content width */
:root {
  --wp--style--global--content-size: 100% !important;
  --wp--style--global--wide-size: 100% !important;
}

/* ---- FIX NAVIGATION ---- */
/* Hide empty nav items */
.wp-block-navigation-item a:empty,
.wp-block-navigation-item__content:empty {
  display: none !important;
}

/* Fix the (NO TITLE) item */
.wp-block-navigation-item__label:empty,
.wp-block-navigation-item__label:contains("(no title)") {
  display: none !important;
}

/* ---- ENHANCED FOOTER ---- */
.site-footer {
  background: var(--gw-black) !important;
  color: rgba(255,255,255,0.6) !important;
  padding: 60px 20px 30px !important;
}

.site-footer .wp-block-group {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.site-footer a {
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.site-footer a:hover {
  color: var(--gw-gold) !important;
}

/* Hide WordPress default footer pattern elements */
.site-footer .wp-block-page-list {
  list-style: none !important;
  padding: 0 !important;
}

.site-footer .wp-block-page-list li {
  margin-bottom: 12px !important;
}

.site-footer .wp-block-page-list li a {
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* Footer bottom bar */
.site-footer .wp-block-group:last-child {
  border-top: 1px solid rgba(197,160,89,0.15) !important;
  margin-top: 40px !important;
  padding-top: 20px !important;
}

/* ---- SUBSITE HEADER ENHANCEMENTS ---- */
/* Style the default blog header on subsites */
.archive-header,
.blog-header,
.page-header {
  background: linear-gradient(135deg, var(--gw-black) 0%, var(--gw-dark) 60%, var(--gw-dark-gray) 100%) !important;
  position: relative;
  padding: 80px 20px 60px !important;
  margin-bottom: 0 !important;
  text-align: center;
}

.archive-header::before,
.blog-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(197,160,89,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(197,160,89,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.archive-header h1,
.blog-header h1,
.page-header h1 {
  background: linear-gradient(135deg, var(--gw-gold) 0%, var(--gw-gold-light) 60%, var(--gw-white) 100%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  position: relative;
  z-index: 1;
}

.archive-header p,
.blog-header p {
  color: rgba(255,255,255,0.7) !important;
  position: relative;
  z-index: 1;
}

/* ---- POST LISTING STYLES ---- */
.wp-block-post-template {
  max-width: 1200px !important;
  margin: 40px auto !important;
  padding: 0 20px !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)) !important;
  gap: 30px !important;
}

.wp-block-post {
  background: var(--gw-white) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  transition: all 0.3s ease !important;
  border: 1px solid var(--gw-gray-light) !important;
}

.wp-block-post:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(197,160,89,0.12) !important;
  border-color: rgba(197,160,89,0.2) !important;
}

/* ---- GLOBAL LINK COLOR ---- */
a {
  color: var(--gw-gold) !important;
}

a:hover {
  color: var(--gw-gold-bright) !important;
}

/* Fix navigation logo colors */
.wp-block-site-title a {
  color: var(--gw-gold) !important;
  font-family: 'Playfair Display', serif !important;
  font-weight: 700 !important;
}

/* Make sure the hero title doesn't wrap weirdly */
.gw-hero h1 {
  word-break: keep-all;
  hyphens: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom selection color */
::selection {
  background: rgba(197,160,89,0.3);
  color: inherit;
}

/* Fix the meet our writers button */
.gw-section-light a.wp-block-button__link {
  margin-top: 20px !important;
}


/* ============================================
   MEET OUR WRITERS PAGE (gwa-* classes)
   ============================================ */

.gwa-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FAFAF8;
  color: #2D2D2D;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.gwa-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 27, 27, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  padding: 0 24px;
}
.gwa-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.gwa-nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #C5A059;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.gwa-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gwa-nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.gwa-nav-links a:hover { color: #C5A059; }
.gwa-nav-cta {
  background: #C5A059;
  color: #1B1B1B;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.gwa-nav-cta:hover { background: #D4AF37; transform: translateY(-1px); }

/* Hero */
.gwa-hero {
  background: #1B1B1B;
  color: #fff;
  padding: 100px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gwa-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(197,160,89,0.04) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(197,160,89,0.03) 0%, transparent 40%);
  pointer-events: none;
}
.gwa-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gwa-hero-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C5A059;
  border: 1px solid rgba(197,160,89,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.gwa-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  color: #C5A059;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.gwa-hero-line {
  width: 60px;
  height: 2px;
  background: #C5A059;
  margin: 0 auto 28px;
}
.gwa-hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.8;
  font-style: italic;
}
.gwa-hero-stats {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Quote */
.gwa-quote {
  text-align: center;
  padding: 56px 24px 36px;
  max-width: 720px;
  margin: 0 auto;
}
.gwa-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #6B6560;
  line-height: 2;
}

/* Sections */
.gwa-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}
.gwa-section-header {
  text-align: center;
  margin-bottom: 36px;
}
.gwa-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C5A059;
  margin-bottom: 10px;
}
.gwa-section-tag svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}
.gwa-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 6px;
}
.gwa-section-url {
  font-size: 0.8rem;
  color: #C5A059;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.gwa-section-url:hover { opacity: 0.7; }

/* Author Cards Grid - 2 per row */
.gwa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .gwa-grid { grid-template-columns: 1fr; }
}

/* Author Card */
.gwa-card {
  display: flex;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gwa-card:nth-child(1) { animation-delay: 0.05s; }
.gwa-card:nth-child(2) { animation-delay: 0.1s; }

.gwa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.gwa-card-img-wrap {
  width: 160px;
  min-width: 160px;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.gwa-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gwa-card:hover .gwa-card-img {
  transform: scale(1.05);
}

.gwa-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gwa-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 2px;
}
.gwa-card-location {
  font-size: 0.68rem;
  color: #C5A059;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 6px;
}
.gwa-card-badge {
  display: inline-block;
  font-size: 0.68rem;
  color: #6B6560;
  background: #F0E6D0;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  width: fit-content;
}
.gwa-card-bio {
  font-size: 0.78rem;
  color: #6B6560;
  line-height: 1.6;
  margin-bottom: 10px;
}
.gwa-card-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 0.78rem;
  color: #C5A059;
  border-left: 3px solid #F0E6D0;
  padding-left: 10px;
  line-height: 1.4;
}

/* Divider */
.gwa-divider {
  max-width: 200px;
  height: 1px;
  background: #F0E6D0;
  margin: 24px auto;
}

/* Disclaimer */
.gwa-disclaimer {
  text-align: center;
  padding: 56px 24px;
  background: #1B1B1B;
  color: rgba(255,255,255,0.6);
  margin-top: 40px;
}
.gwa-disclaimer p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
}
.gwa-disclaimer strong { color: #C5A059; font-weight: 600; }
.gwa-disclaimer-tagline {
  color: #C5A059;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 16px;
}

.gwa-footer {
  text-align: center;
  padding: 20px;
  background: #1B1B1B;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

/* Mobile */
@media (max-width: 600px) {
  .gwa-card { flex-direction: column; }
  .gwa-card-img-wrap { width: 100%; height: 200px; }
  .gwa-nav-links { display: none; }
  .gwa-hero { padding: 60px 20px 40px; }
  .gwa-hero h1 { font-size: 2.2rem; }
  .gwa-section { padding: 24px 16px; }
  .gwa-grid { gap: 16px; }
}
