/*
Theme Name: GolanTek Child
Template:   twentytwentyfour
Version: 2.1
Description: GolanTek custom child theme
*/

/* ============================================================
   GOOGLE FONTS - Import at top
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
  --gt-red:        #14B8A6;
  --gt-red-light:  #FCEBEB;
  --gt-red-dark:   #A32D2D;
  --gt-black:      #111110;
  --gt-gray-900:   #1C1C1A;
  --gt-gray-700:   #3D3D3A;
  --gt-gray-500:   #737370;
  --gt-gray-300:   #C2C0B6;
  --gt-gray-100:   #F1EFE8;
  --gt-white:      #FAFAF8;
  --gt-serif:      'DM Serif Display', Georgia, serif;
  --gt-sans:       'DM Sans', system-ui, sans-serif;
  --gt-radius:     8px;
  --gt-radius-lg:  14px;
  --gt-transition: 0.18s ease;
  --gt-max-width:  1100px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--gt-sans);
  font-weight: 400;
  color: var(--gt-gray-700);
  background: var(--gt-white);
  margin: 0;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; transition: color var(--gt-transition); }
a:hover { color: var(--gt-red); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gt-serif);
  color: var(--gt-black);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

/* ============================================================
   LAYOUT WRAPPER
   ============================================================ */
.gt-container {
  max-width: var(--gt-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.gt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gt-gray-100);
}

.gt-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.gt-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gt-sans);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--gt-black);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.gt-logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gt-red);
  flex-shrink: 0;
}

.gt-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gt-nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gt-gray-500);
  padding: 6px 12px;
  border-radius: var(--gt-radius);
  transition: background var(--gt-transition), color var(--gt-transition);
}

.gt-nav-links a:hover {
  background: var(--gt-gray-100);
  color: var(--gt-black);
}

.gt-btn-nav {
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--gt-black);
  color: var(--gt-white) !important;
  padding: 8px 18px !important;
  border-radius: 100px !important;
  transition: background var(--gt-transition) !important;
}

.gt-btn-nav:hover {
  background: var(--gt-red) !important;
  color: var(--gt-white) !important;
}

/* Mobile nav toggle */
.gt-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--gt-black);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.gt-hero {
  padding: 80px 24px 60px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.gt-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at center top, rgba(20,184,166,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gt-hero > * { position: relative; z-index: 1; }

.gt-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gt-red-dark);
  background: var(--gt-red-light);
  border: 1px solid rgba(20,184,166,0.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.gt-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gt-black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-style: italic;
}

.gt-hero h1 em {
  font-style: normal;
  color: var(--gt-red);
}

.gt-hero-lead {
  font-size: 1.1rem;
  color: var(--gt-gray-500);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.gt-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.gt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gt-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--gt-transition);
  text-decoration: none;
}

.gt-btn-primary {
  background: var(--gt-black);
  color: var(--gt-white);
}

.gt-btn-primary:hover {
  background: var(--gt-red);
  color: var(--gt-white);
  transform: translateY(-1px);
}

.gt-btn-outline {
  background: transparent;
  color: var(--gt-gray-700);
  border: 1px solid var(--gt-gray-300);
}

.gt-btn-outline:hover {
  border-color: var(--gt-black);
  color: var(--gt-black);
  transform: translateY(-1px);
}

/* Author strip */
.gt-author-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 24px;
  border-top: 1px solid var(--gt-gray-100);
  border-bottom: 1px solid var(--gt-gray-100);
  background: var(--gt-white);
}

.gt-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gt-red-light);
  border: 2px solid var(--gt-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gt-red-dark);
  flex-shrink: 0;
  overflow: hidden;
}

.gt-avatar img { width: 100%; height: 100%; object-fit: cover; }

.gt-author-info {
  font-size: 0.875rem;
  color: var(--gt-gray-500);
  text-align: left;
  line-height: 1.5;
}

.gt-author-info strong {
  display: block;
  color: var(--gt-black);
  font-weight: 500;
}

/* ============================================================
   VALUE PILLARS
   ============================================================ */
.gt-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--gt-gray-100);
}

.gt-pillar {
  padding: 32px 28px;
  border-right: 1px solid var(--gt-gray-100);
  transition: background var(--gt-transition);
}

.gt-pillar:last-child { border-right: none; }
.gt-pillar:hover { background: rgba(20,184,166,0.02); }

.gt-pillar-number {
  font-family: var(--gt-serif);
  font-size: 2.5rem;
  color: var(--gt-red-light);
  line-height: 1;
  margin-bottom: 12px;
  user-select: none;
}

.gt-pillar h3 {
  font-family: var(--gt-serif);
  font-size: 1.15rem;
  color: var(--gt-black);
  margin-bottom: 8px;
}

.gt-pillar p {
  font-size: 0.875rem;
  color: var(--gt-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SECTION HEADING
   ============================================================ */
.gt-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 40px 0 20px;
  border-bottom: 1px solid var(--gt-gray-100);
  margin-bottom: 0;
}

.gt-section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gt-gray-300);
}

.gt-section-link {
  font-size: 0.85rem;
  color: var(--gt-red);
  display: flex;
  align-items: center;
  gap: 4px;
}

.gt-section-link:hover { gap: 8px; }

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.gt-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--gt-gray-100);
}

.gt-post-card {
  padding: 28px 24px;
  border-right: 1px solid var(--gt-gray-100);
  border-bottom: 1px solid var(--gt-gray-100);
  transition: background var(--gt-transition);
  position: relative;
}

.gt-post-card:nth-child(even) { border-right: none; }
.gt-post-card:nth-child(3),
.gt-post-card:nth-child(4) { border-bottom: none; }

.gt-post-card:hover { background: rgba(20,184,166,0.02); }

.gt-post-card:hover .gt-post-title { color: var(--gt-red); }

.gt-post-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gt-red-dark);
  margin-bottom: 10px;
}

.gt-post-title {
  font-family: var(--gt-serif);
  font-size: 1.15rem;
  color: var(--gt-black);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--gt-transition);
}

.gt-post-excerpt {
  font-size: 0.875rem;
  color: var(--gt-gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.gt-post-meta {
  font-size: 0.78rem;
  color: var(--gt-gray-300);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gt-post-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gt-gray-300);
  flex-shrink: 0;
}

.gt-read-more {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gt-red);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.gt-newsletter {
  background: var(--gt-black);
  padding: 48px 24px;
  text-align: center;
}

.gt-newsletter h2 {
  font-family: var(--gt-serif);
  color: var(--gt-white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.gt-newsletter p {
  color: var(--gt-gray-300);
  font-size: 0.95rem;
  max-width: 440px;
  margin: 0 auto 28px;
}

.gt-newsletter-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 0 auto;
}

.gt-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  font-family: var(--gt-sans);
  font-size: 0.9rem;
  padding: 11px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--gt-white);
  outline: none;
  transition: border-color var(--gt-transition);
}

.gt-newsletter-form input[type="email"]::placeholder { color: var(--gt-gray-500); }
.gt-newsletter-form input[type="email"]:focus { border-color: rgba(255,255,255,0.4); }

.gt-newsletter-form button {
  font-family: var(--gt-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: 100px;
  border: none;
  background: var(--gt-red);
  color: var(--gt-white);
  cursor: pointer;
  transition: background var(--gt-transition), transform var(--gt-transition);
}

.gt-newsletter-form button:hover {
  background: var(--gt-red-dark);
  transform: translateY(-1px);
}

.gt-newsletter-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--gt-gray-500);
}

/* ============================================================
   STOP LOOK THINK STRIP
   ============================================================ */
.gt-mantra {
  padding: 32px 24px;
  border-bottom: 1px solid var(--gt-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.gt-mantra-word {
  font-family: var(--gt-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gt-gray-300);
  letter-spacing: 0.03em;
}

.gt-mantra-word.active {
  color: var(--gt-black);
}

.gt-mantra-sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gt-red);
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.gt-footer {
  padding: 24px;
  border-top: 1px solid var(--gt-gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.gt-footer-copy {
  font-size: 0.8rem;
  color: var(--gt-gray-300);
}

.gt-footer-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gt-footer-links a {
  font-size: 0.8rem;
  color: var(--gt-gray-300);
}

.gt-footer-links a:hover { color: var(--gt-black); }

/* ============================================================
   SINGLE POST
   ============================================================ */
.gt-post-header {
  padding: 56px 24px 40px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gt-post-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 64px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.gt-post-content h2,
.gt-post-content h3 { margin-top: 2rem; }

.gt-post-content blockquote {
  border-left: 3px solid var(--gt-red);
  padding-left: 20px;
  margin: 28px 0;
  color: var(--gt-gray-500);
  font-style: italic;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .gt-nav-links { display: none; }
  .gt-nav-toggle { display: block; }

  .gt-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--gt-white);
    border-bottom: 1px solid var(--gt-gray-100);
    padding: 12px 16px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .gt-pillars { grid-template-columns: 1fr; }
  .gt-pillar { border-right: none; border-bottom: 1px solid var(--gt-gray-100); }
  .gt-pillar:last-child { border-bottom: none; }

  .gt-posts-grid { grid-template-columns: 1fr; }
  .gt-post-card { border-right: none; }
  .gt-post-card:nth-child(3) { border-bottom: 1px solid var(--gt-gray-100); }
  .gt-post-card:nth-child(4) { border-bottom: none; }

  .gt-author-strip { flex-direction: column; text-align: center; }
  .gt-author-info { text-align: center; }
  .gt-author-info strong { display: inline; }
}




/* ================================================
   DARK THEME OVERRIDES
   ================================================ */

:root {
  --gt-bg:           #0f0f0e;
  --gt-surface:      #1a1a18;
  --gt-surface-2:    #232320;
  --gt-border:       rgba(255,255,255,0.08);
  --gt-text:         #e8e6df;
  --gt-text-muted:   #8a8882;
  --gt-text-subtle:  #5a5855;
}

/* Base */
body { background-color: #0f0f0e !important; color: #e8e6df !important; }
h1, h2, h3, h4, h5, h6 { color: #e8e6df !important; }
strong { color: inherit; }

/* Header */
.gt-header { background: rgba(15,15,14,0.96) !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
.gt-logo { color: #e8e6df !important; font-weight: 600 !important; }
.gt-logo:hover { color: #ffffff !important; }
.gt-nav-links a { color: #a8a6a0 !important; }
.gt-nav-links a:hover { color: #e8e6df !important; }
.gt-nav__logo { color: #e8e6df !important; }
.gt-nav__links a { color: #8a8882 !important; }
.gt-nav__links a:hover { color: #e8e6df !important; }

/* Hero */
.gt-hero { background: #0f0f0e !important; }
.gt-badge { background: rgba(20,184,166,0.15) !important; color: #14B8A6 !important; border-color: transparent !important; }
.gt-hero h1 { color: #e8e6df !important; }
.gt-hero em { color: #14B8A6 !important; font-style: italic; }
.gt-hero-lead { color: #8a8882 !important; }
.gt-btn-primary { background: #e8e6df !important; color: #0f0f0e !important; border-color: #e8e6df !important; }
.gt-btn-primary:hover { background: #c8c6bf !important; }
.gt-btn-outline { border-color: rgba(255,255,255,0.2) !important; color: #e8e6df !important; background: transparent !important; }
.gt-btn-outline:hover { background: #1a1a18 !important; }

/* Author strip */
.gt-author-strip { background: #1a1a18 !important; border-top: 1px solid rgba(255,255,255,0.08) !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
.gt-avatar { background: #2a2a28 !important; color: #14B8A6 !important; }
.gt-author-info { color: #8a8882 !important; }
.gt-author-info strong { color: #e8e6df !important; }

/* Mantra */
.gt-mantra { background: #1a1a18 !important; border-top: 1px solid rgba(255,255,255,0.08) !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
.gt-mantra p, .gt-mantra__text, .gt-mantra span { color: #8a8882 !important; }

/* Pillars */
.gt-pillars { background: #0f0f0e !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
.gt-pillar__number, .gt-pillar .gt-number { color: rgba(20,184,166,0.18) !important; }
.gt-pillar h3, .gt-pillar__title { color: #e8e6df !important; }
.gt-pillar p, .gt-pillar__desc { color: #8a8882 !important; }

/* Posts grid */
.gt-posts { background: #1a1a18 !important; }
.gt-posts__header { border-bottom-color: rgba(255,255,255,0.08) !important; }
.gt-posts__label { color: #5a5855 !important; }
.gt-posts__all { color: #14B8A6 !important; }
.gt-post-card { background: #232320 !important; border-color: rgba(255,255,255,0.08) !important; }
.gt-post-card:hover { border-color: rgba(20,184,166,0.35) !important; box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important; }
.gt-post-card__cat { color: #14B8A6 !important; }
.gt-post-card h3, .gt-post-card__title { color: #e8e6df !important; }
.gt-post-card p, .gt-post-card__excerpt { color: #8a8882 !important; }
.gt-post-card__meta, .gt-post-card time { color: #5a5855 !important; }
.gt-post-card__read, .gt-post-card a.gt-read-more { color: #14B8A6 !important; }

/* Newsletter */
.gt-newsletter { background: #111110 !important; }
.gt-newsletter h2, .gt-newsletter__title { color: #e8e6df !important; }
.gt-newsletter p, .gt-newsletter__sub { color: #8a8882 !important; }
.gt-newsletter input[type="email"], .gt-newsletter__input { background: #1a1a18 !important; border-color: rgba(255,255,255,0.12) !important; color: #e8e6df !important; }
.gt-newsletter small, .gt-newsletter__disclaimer { color: #5a5855 !important; }

/* Footer */
.gt-footer { background: #0f0f0e !important; border-top: 1px solid rgba(255,255,255,0.08) !important; }
.gt-footer p, .gt-footer__copy { color: #5a5855 !important; }
.gt-footer a, .gt-footer__links a { color: #5a5855 !important; }
.gt-footer a:hover, .gt-footer__links a:hover { color: #8a8882 !important; }


/* ================================================
   BLOG ARCHIVE PAGE (home.php)
   ================================================ */

.gt-blog-archive {
  background: #0f0f0e;
  min-height: 80vh;
}

.gt-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gt-blog-header {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gt-blog-header .gt-posts__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #5a5855;
  margin-bottom: 0.75rem;
}

.gt-blog-header h1 {
  font-family: var(--gt-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #e8e6df;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.gt-blog-lead {
  color: #8a8882;
  font-size: 1.05rem;
  margin: 0;
}

.gt-blog-grid {
  padding: 3rem 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Blog post cards — list style */
.gt-blog-archive .gt-post-card {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 0 !important;
  padding: 2rem 0 !important;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  transition: none;
  box-shadow: none !important;
}

.gt-blog-archive .gt-post-card:first-child {
  padding-top: 0 !important;
}

.gt-blog-archive .gt-post-card:hover {
  border-color: rgba(255,255,255,0.07) !important;
  box-shadow: none !important;
}

.gt-blog-archive .gt-post-card__cat {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #14B8A6 !important;
  margin-bottom: 0.25rem;
}

.gt-blog-archive .gt-post-card__title {
  font-family: var(--gt-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.2;
  margin: 0;
}

.gt-blog-archive .gt-post-card__title a {
  color: #e8e6df !important;
  text-decoration: none;
  transition: color 0.15s ease;
}

.gt-blog-archive .gt-post-card__title a:hover {
  color: #14B8A6 !important;
}

.gt-blog-archive .gt-post-card__excerpt {
  color: #8a8882 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.25rem 0;
}

.gt-blog-archive .gt-post-card__meta {
  font-size: 0.8rem;
  color: #5a5855 !important;
}

.gt-blog-archive .gt-post-card__read {
  font-size: 0.85rem;
  font-weight: 500;
  color: #14B8A6 !important;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
  display: inline-block;
}

.gt-blog-archive .gt-post-card__read:hover {
  color: #e05a53 !important;
}

/* Pagination */
.gt-blog-pagination {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.gt-blog-pagination .nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.gt-blog-pagination a,
.gt-blog-pagination span {
  color: #8a8882;
  font-size: 0.9rem;
  text-decoration: none;
}

.gt-blog-pagination a:hover { color: #e8e6df; }
.gt-blog-pagination .current { color: #14B8A6; }

.gt-no-posts {
  color: #5a5855;
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .gt-blog-header { padding: 2.5rem 0 1.5rem; }
  .gt-blog-archive .gt-post-card { padding: 1.5rem 0 !important; }
}


/* ================================================
   ABOUT PAGE (page-about.php)
   ================================================ */

.gt-about {
  background: #0f0f0e;
  min-height: 90vh;
}

/* Hero strip */
.gt-about-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gt-about-hero__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #14B8A6;
  color: #fff;
  font-family: var(--gt-serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.gt-about-hero__name {
  font-family: var(--gt-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-style: italic;
  color: #e8e6df;
  margin: 0 0 0.4rem;
  line-height: 1.1;
}

.gt-about-hero__role {
  font-size: 0.9rem;
  color: #8a8882;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.gt-about-hero__tagline {
  font-size: 1rem;
  color: #5a5855;
  margin: 0;
  font-style: italic;
}

/* Body: two-column grid */
.gt-about-body {
  padding: 4rem 0 6rem;
}

.gt-about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}

/* Main content column */
.gt-about-section {
  margin-bottom: 3rem;
}

.gt-about-section h2 {
  font-family: var(--gt-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: #e8e6df;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.gt-about-section p {
  color: #8a8882;
  line-height: 1.75;
  margin: 0 0 1rem;
  font-size: 1rem;
}

/* Topic pillars */
.gt-about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gt-about-pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.gt-about-pillar__num {
  font-family: var(--gt-serif);
  font-size: 1.8rem;
  color: rgba(20,184,166,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  padding-top: 0.1rem;
}

.gt-about-pillar strong {
  display: block;
  color: #e8e6df;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.gt-about-pillar p {
  color: #8a8882;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.gt-about-cta {
  margin-top: 2rem;
}

/* Sidebar */
.gt-about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 80px;
}

.gt-about-card {
  background: #1a1a18;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 1.5rem;
}

.gt-about-card h3 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #5a5855;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.gt-about-card p {
  color: #8a8882;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.gt-about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gt-about-list li {
  color: #8a8882;
  font-size: 0.9rem;
  padding-left: 1rem;
  position: relative;
}

.gt-about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #14B8A6;
}

.gt-about-mantra {
  font-family: var(--gt-serif);
  font-size: 1.1rem;
  color: #e8e6df !important;
  letter-spacing: 0.05em;
  font-style: italic;
}

/* Generic page fallback */
.gt-page { background: #0f0f0e; min-height: 80vh; padding: 4rem 0; }
.gt-page-content { max-width: 760px; }
.gt-page-title {
  font-family: var(--gt-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  color: #e8e6df;
  margin: 0 0 2rem;
}
.gt-page-body { color: #8a8882; line-height: 1.8; font-size: 1rem; }
.gt-page-body p { margin: 0 0 1.25rem; }
.gt-page-body h2, .gt-page-body h3 { color: #e8e6df; font-family: var(--gt-serif); font-style: italic; margin: 2rem 0 0.75rem; }

/* Responsive */
@media (max-width: 900px) {
  .gt-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gt-about-sidebar { position: static; }
  .gt-about-hero { padding: 2.5rem 0 2rem; }
  .gt-about-body { padding: 2.5rem 0 4rem; }
}


/* Subscribe button (mailto, no form) */
.gt-btn-subscribe {
  display: inline-block;
  background: #14B8A6;
  color: #fff !important;
  font-family: var(--gt-sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.75rem;
  border-radius: var(--gt-radius);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--gt-transition);
  margin-bottom: 1rem;
}
.gt-btn-subscribe:hover { background: #a8271f; }
.gt-newsletter-disclaimer { color: #5a5855 !important; font-size: 0.8rem; margin: 0; }


/* ==============================================
   ABOUT PAGE — HERO
   ============================================== */
.gt-about-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.gt-about-hero__inner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.gt-about-hero__name {
  font-size: 2rem;
  font-weight: 700;
  color: #e8e6df;
  margin: 0 0 0.25rem;
  line-height: 1.2;
}
.gt-about-hero__role {
  color: #8a8882;
  margin: 0.25rem 0;
  font-size: 1rem;
}
.gt-about-hero__tagline {
  color: #5a5855;
  font-style: italic;
  margin: 0.25rem 0 0;
}
.gt-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #0a66c2 !important;
  border: 1px solid rgba(10,102,194,0.35);
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  text-decoration: none !important;
  margin-top: 0.85rem;
  transition: background 0.15s;
}
.gt-linkedin-btn:hover {
  background: rgba(10,102,194,0.1);
}

/* ==============================================
   ABOUT PAGE — GRID & CONTENT
   ============================================== */
.gt-about-grid {
  padding: 3rem 0 5rem;
}
.gt-about-section {
  margin-bottom: 2.5rem;
}
.gt-about-section h2 {
  font-size: 1.3rem;
  color: #e8e6df;
  margin: 0 0 1rem;
  font-weight: 600;
}
.gt-about-section p {
  color: #8a8882;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}
.gt-about-section strong {
  color: #e8e6df;
}
.gt-about-main .gt-btn {
  margin-top: 0.5rem;
}

/* ==============================================
   ABOUT PAGE — PILLARS
   ============================================== */
.gt-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.gt-pillar-item {
  border-left: 3px solid #14B8A6;
  padding-left: 1rem;
}
.gt-pillar-item strong {
  display: block;
  color: #e8e6df !important;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.gt-pillar-item p {
  color: #8a8882 !important;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==============================================
   ABOUT PAGE — SIDEBAR CARDS
   ============================================== */
.gt-about-card + .gt-about-card {
  margin-top: 1.25rem;
}
.gt-about-card__title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a5855;
  margin: 0 0 0.85rem;
  font-weight: 600;
}
.gt-about-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gt-about-card__list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #e8e6df;
  font-size: 0.9rem;
}
.gt-about-card__list li:last-child {
  border-bottom: none;
}
.gt-about-card__orgs {
  font-size: 0.8rem;
  color: #5a5855;
  margin-top: 0.85rem;
  margin-bottom: 0;
}
.gt-about-card__quote {
  font-style: italic;
  color: #8a8882;
  border-left: 2px solid #14B8A6;
  padding-left: 0.85rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.gt-about-card p {
  color: #8a8882;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.gt-about-card__link {
  color: #14B8A6 !important;
  text-decoration: none !important;
  font-size: 0.88rem;
}
.gt-about-card__link:hover {
  text-decoration: underline !important;
}

/* ==============================================
   ABOUT PAGE — RESPONSIVE
   ============================================== */
@media (max-width: 768px) {
  .gt-about-hero__inner { flex-direction: column; text-align: center; }
  .gt-about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .gt-about-sidebar { position: static; }
}

/* Em accent — red on all page headers */
.gt-blog-header h1 em { color: #14B8A6 !important; font-style: inherit; }
.gt-about-hero__tagline em { color: #14B8A6 !important; font-style: inherit; }

/* ==============================================
   SINGLE POST
   ============================================== */
.gt-single {
  background: #0f0f0e;
  min-height: 80vh;
}
.gt-single-header {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 3rem;
}
.gt-single-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #e8e6df;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
  max-width: 760px;
}
.gt-single-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5a5855;
  font-size: 0.88rem;
}
.gt-single-sep { color: #3a3835; }

/* ==============================================
   PROSE (post body)
   ============================================== */
.gt-prose {
  max-width: 720px;
  margin: 0 0 3rem;
}
.gt-prose p {
  color: #a8a6a0;
  line-height: 1.85;
  margin-bottom: 1.35rem;
  font-size: 1.0625rem;
}
.gt-prose h2 {
  color: #e8e6df;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  line-height: 1.3;
}
.gt-prose h3 {
  color: #e8e6df;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 2rem 0 0.6rem;
  line-height: 1.3;
}
.gt-prose h4 {
  color: #c8c6bf;
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.gt-prose a {
  color: #14B8A6 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gt-prose a:hover { color: #0D9488 !important; }
.gt-prose strong { color: #e8e6df; }
.gt-prose em { font-style: italic; }
.gt-prose ul,
.gt-prose ol {
  color: #a8a6a0;
  padding-left: 1.5rem;
  margin-bottom: 1.35rem;
  line-height: 1.85;
}
.gt-prose li { margin-bottom: 0.4rem; }
.gt-prose blockquote {
  border-left: 3px solid #14B8A6;
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.75rem 0;
  color: #8a8882;
  font-style: italic;
}
.gt-prose blockquote p { color: #8a8882; margin-bottom: 0; }
.gt-prose hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2.5rem 0;
}
.gt-prose code {
  background: #1a1a18;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 0.1em 0.4em;
  font-size: 0.875em;
  color: #14B8A6;
}
.gt-prose pre {
  background: #1a1a18;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.75rem 0;
}
.gt-prose pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9em;
}
.gt-prose img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* Back link */
.gt-single-back { padding-bottom: 4rem; }
.gt-back-link {
  color: #14B8A6 !important;
  text-decoration: none !important;
  font-size: 0.9rem;
}
.gt-back-link:hover { text-decoration: underline !important; }

/* Responsive */
@media (max-width: 768px) {
  .gt-single-header { padding: 2.5rem 0 2rem; }
  .gt-single-title { font-size: 1.6rem; }
}

/* ==============================================
   TYPOGRAPHY POLISH — v2.0
   ============================================== */

/* --- Global base --- */
body {
  font-size: 1.0625rem;       /* 17px — slightly larger base for readability */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Hero headline: override serif inheritance, go bold DM Sans --- */
.gt-hero h1 {
  font-family: "DM Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(2.4rem, 6vw, 3.75rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
  color: #e8e6df !important;
}
.gt-hero h1 em {
  font-style: normal !important;
}

/* --- Hero lead text --- */
.gt-hero-lead {
  font-size: 1.0625rem !important;
  line-height: 1.75 !important;
  color: #8a8882 !important;
  max-width: 520px;
}
.gt-hero-lead strong {
  color: #e8e6df !important;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* --- Nav: medium weight, slightly crisper --- */
.gt-nav-links a {
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.01em;
}
.gt-logo {
  font-weight: 700 !important;
  font-size: 1.0625rem !important;
  letter-spacing: -0.01em;
}

/* --- Badge: tighter, cleaner --- */
.gt-badge {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
}

/* --- Blog page header h1 --- */
.gt-blog-header h1 {
  font-family: "DM Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.8rem, 4vw, 2.75rem) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  color: #e8e6df !important;
}
.gt-blog-lead {
  font-size: 1rem !important;
  color: #8a8882 !important;
  line-height: 1.7 !important;
  max-width: 560px;
}

/* --- Post cards --- */
.gt-post-card h2 {
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em;
}
.gt-post-card p,
.gt-post-card .gt-excerpt {
  font-size: 0.9375rem !important;   /* 15px */
  line-height: 1.65 !important;
  color: #8a8882 !important;
}
.gt-post-meta, .gt-post-card .gt-post-meta {
  font-size: 0.8rem !important;
  letter-spacing: 0.01em;
}

/* --- Single post title --- */
.gt-single-title {
  font-family: "DM Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}

/* --- Prose body (single post) --- */
.gt-prose p {
  font-size: 1.0625rem !important;
  line-height: 1.85 !important;
}
.gt-prose h2 {
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em;
}
.gt-prose h3 {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}

/* --- About page headings --- */
.gt-about-section h2 {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.015em;
}
.gt-about-hero__name {
  letter-spacing: -0.02em !important;
}
.gt-about-hero__tagline {
  font-size: 0.9375rem !important;
  color: #5a5855 !important;
}

/* --- Section headings (pillars, mantra, etc.) --- */
.gt-pillars h2,
.gt-mantra h2,
.gt-posts h2,
.gt-newsletter h2 {
  font-family: "DM Sans", system-ui, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* Hero h1: sized for exactly 2 lines at desktop */
.gt-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3.25rem) !important; /* max 52px */
}