/*
Theme Name: Gasimo Global
Theme URI: https://gasimo.org
Author: Gasimo
Author URI: https://www.linkedin.com/company/gasimo
Description: Precision Authority — Cormorant Garamond headlines, Figtree body, deep navy accent. Human-led B2B outreach.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gasimo-global
*/

/* ───────────────────────────────────────────────────────
   FONTS
──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Figtree:wght@400;500;600;700&display=swap');

/* ───────────────────────────────────────────────────────
   TOKENS
──────────────────────────────────────────────────────── */
:root {
  /* Palette */
  --bg:          #fafaf8;
  --surface:     #ffffff;
  --surface-2:   #f3f4f8;
  --ink:         #0f1c38;
  --ink-2:       #3d4a62;
  --muted:       #5c6a80;
  --muted-2:     #8c97a8;
  --line:        #e2e6ee;
  --line-2:      #cdd3df;

  /* Accent — navy */
  --accent:      #0f2d6b;
  --accent-2:    #1a4094;
  --accent-light:#dbe5f8;
  --accent-text: #0b2255;

  /* Warm amber — badges, proof tags */
  --warm:        #9a6209;
  --warm-2:      #b5760d;
  --warm-light:  #fef5e4;
  --warm-border: #f0d8a0;

  /* Semantic */
  --success:     #0f5c36;
  --success-bg:  #e6f4ee;

  /* Legacy aliases (keeps existing PHP templates working) */
  --indigo-50:   #dbe5f8;
  --indigo-600:  #0f2d6b;
  --fuchsia-600: #1a4094;
  --emerald-50:  #e6f4ee;
  --emerald-700: #0f5c36;
  --gray-50:     #f3f4f8;
  --gray-100:    #eaecf2;
  --gray-200:    #e2e6ee;
  --gray-300:    #cdd3df;
  --gray-600:    #5c6a80;
  --gray-700:    #3d4a62;
  --gray-800:    #0f1c38;
  --black5:      rgba(15,28,56,.05);

  /* Radius */
  --r-sm:   8px;
  --r:      12px;
  --r-lg:   18px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-sm:  0 1px 4px rgba(15,28,56,.07);
  --shadow:     0 4px 16px rgba(15,28,56,.08);
  --shadow-lg:  0 12px 40px rgba(15,28,56,.10);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Figtree', system-ui, sans-serif;
}

/* ───────────────────────────────────────────────────────
   BASE RESET
──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 4px; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ───────────────────────────────────────────────────────
   TYPOGRAPHY
──────────────────────────────────────────────────────── */
.h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 12px 0 0;
}

h3, .h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}

.small { font-size: 13px; color: var(--muted); }
.muted { color: var(--muted); }
.small-muted { font-size: 12px; color: var(--muted-2); }
.mono { font-family: ui-monospace, 'Cascadia Code', monospace; }
.text-center { text-align: center; }
.prose { line-height: 1.75; color: var(--ink-2); }
.prose h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--ink); margin: 32px 0 10px; }
.prose p { margin: 0 0 1em; }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }

/* ───────────────────────────────────────────────────────
   LAYOUT
──────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-soft { background: var(--surface-2); }

.grid { display: grid; gap: 20px; }
@media (min-width: 640px)  { .grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px)  { .grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* ───────────────────────────────────────────────────────
   BADGE
──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--warm-light);
  color: var(--warm);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────────────────
   CARD
──────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.card .title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.35;
}

/* ───────────────────────────────────────────────────────
   CTA BUTTONS
──────────────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
  border-radius: var(--r);
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, border-color .18s, transform .18s, box-shadow .18s;
  white-space: nowrap;
}
.cta:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,28,56,.18);
}

/* Outline variant — globally defined */
.cta--outline, .cta.secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: none;
}
.cta--outline:hover, .cta.secondary:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: none;
}

/* Small variant — globally defined */
.cta--sm {
  padding: 9px 18px;
  font-size: 13.5px;
}

/* ───────────────────────────────────────────────────────
   BTN (alias)
──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  border: 1.5px solid var(--accent);
  border-radius: var(--r); padding: 13px 24px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: background .18s, transform .18s;
}
.btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn.secondary {
  background: var(--surface); color: var(--ink);
  border-color: var(--line-2); box-shadow: var(--shadow-sm);
}
.btn.secondary:hover { background: var(--surface-2); }
.btn.block { width: 100%; }
.btn.small { padding: 9px 16px; font-size: 13.5px; border-radius: var(--r-sm); }

/* ───────────────────────────────────────────────────────
   HEADER
──────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,250,248,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header .row,
.site-header .container.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-logo img, .brand-logo svg { display: block; height: 28px; width: auto; }
.brand-text { font-weight: 700; font-size: 16px; color: var(--ink); letter-spacing: -.01em; }

.nav, .nav-desktop {
  display: none;
  align-items: center;
  gap: 26px;
}
@media (min-width: 768px) { .nav, .nav-desktop { display: flex; } }
.nav a, .nav-desktop a, .nav-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}
.nav a:hover, .nav-desktop a:hover, .nav-list a:hover { color: var(--ink); }

.nav-cta { display: none; }

/* ─── Mobile nav ─── */
.mobile-menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent; cursor: pointer; padding: 8px;
}
.mobile-menu-toggle span {
  display: block; height: 1.5px; width: 22px;
  background: var(--ink); margin: 5px auto; border-radius: 999px;
  transition: transform .2s, opacity .2s;
}

.mobile-nav-wrap {
  display: flex; align-items: center; gap: 20px;
}

@media (max-width: 768px) {
  .site-header .row { position: relative; }
  .mobile-menu-toggle { display: block; }
  .mobile-nav-wrap {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px; right: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px 20px 28px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .site-header.menu-open .mobile-nav-wrap { display: block; }
  .mobile-nav-wrap .nav, .mobile-nav-wrap .nav-list {
    display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  }
  .mobile-nav-wrap .nav a, .mobile-nav-wrap .nav-list a { font-size: 16px; }
  .mobile-nav-wrap .cta { display: inline-flex; margin-top: 24px; width: 100%; justify-content: center; }
  .site-header .nav-desktop, .site-header .cta-desktop, .site-header .nav-cta { display: none !important; }
}
@media (min-width: 769px) {
  .site-header .mobile-menu-toggle, .site-header .mobile-nav-wrap { display: none !important; }
  .site-header .nav-desktop { display: flex !important; }
}

/* ───────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

.hero .trust {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 20px;
}

.hero-gradient {
  position: absolute;
  inset: auto 0 0 0;
  height: 200px;
  background: linear-gradient(0deg, rgba(219,229,248,.25), transparent);
  pointer-events: none;
}

/* ───────────────────────────────────────────────────────
   PLANS
──────────────────────────────────────────────────────── */
.plan { position: relative; }
.plan.highlight {
  border: 1.5px solid var(--accent-light);
  box-shadow: 0 0 0 4px rgba(15,45,107,.04);
}

.badge-pro {
  display: inline-flex; align-items: center;
  background: var(--accent-light);
  color: var(--accent-text);
  border-radius: var(--r-pill);
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

.target {
  display: inline-flex; align-items: center;
  background: var(--warm-light);
  color: var(--warm);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

.price { font-size: 26px; font-weight: 700; color: var(--ink); margin: 14px 0 0; }
.price-amount { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--ink); }

/* ───────────────────────────────────────────────────────
   PROOF / TESTIMONIALS
──────────────────────────────────────────────────────── */
.proof { background: var(--surface-2); }

.tag {
  display: inline-flex; align-items: center;
  background: var(--success-bg);
  color: var(--success);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ───────────────────────────────────────────────────────
   FIT LIST
──────────────────────────────────────────────────────── */
.fit-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.fit-list { list-style: none; margin: 18px 0 0; padding: 0; }
.fit-list li {
  display: flex; justify-content: center; align-items: flex-start;
  gap: 10px; margin-bottom: 10px;
  font-size: 16px; line-height: 1.5; color: var(--ink-2);
}
.fit-list li::before {
  content: "";
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--warm-2);
  margin-top: .5em; flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────
   FAQ
──────────────────────────────────────────────────────── */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.faq-item:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq-item.is-open { border-color: var(--accent-light); }

.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 20px;
  cursor: pointer; background: transparent; border: 0;
  font-size: 15px; font-weight: 600; color: var(--ink); text-align: left;
}

.faq-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  background: var(--surface); color: var(--muted);
  transition: background .15s, border-color .15s, color .15s;
}
.faq-item.is-open .faq-toggle {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

.faq-a, .faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
  font-size: 14.5px; line-height: 1.65; color: var(--muted);
}

/* ───────────────────────────────────────────────────────
   LOGO GRID
──────────────────────────────────────────────────────── */
.logo-grid {
  display: grid; gap: 12px; align-items: center; margin-top: 20px;
}
@media (min-width: 480px) { .logo-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 900px) { .logo-grid { grid-template-columns: repeat(6, minmax(0,1fr)); } }

.logo-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
  min-height: 72px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.logo-tile:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.logo-tile img {
  max-height: 34px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: .75;
  transition: filter .2s, opacity .2s;
}
.logo-tile:hover img { filter: none; opacity: 1; }

/* ───────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 52px 0;
  background: var(--bg);
}
.site-footer .links {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
}
.site-footer .links a {
  font-size: 14px; color: var(--muted); transition: color .15s;
}
.site-footer .links a:hover { color: var(--ink); }
.copy { color: var(--muted-2); font-size: 12px; margin-top: 10px; }

/* ───────────────────────────────────────────────────────
   PILL / MISC
──────────────────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 5px 12px; font-size: 13px; color: var(--muted); background: var(--surface);
}

/* ───────────────────────────────────────────────────────
   LOGO DOT (nav icon)
──────────────────────────────────────────────────────── */
.logo-dot {
  display: inline-block;
  width: 32px; height: 32px;
  background-image: url('./assets/img/site-icon.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* ───────────────────────────────────────────────────────
   GOAL GRID (Choose Your Goal page)
──────────────────────────────────────────────────────── */
.goal-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .goal-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .goal-grid { grid-template-columns: 1fr 1fr 1fr; } }

.goal-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: border-color .18s, box-shadow .18s, transform .18s;
  text-decoration: none; color: inherit;
}
.goal-card:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.goal-card .title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0; }
.goal-card .desc { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ───────────────────────────────────────────────────────
   DETAILS / SUMMARY (FAQ fallback)
──────────────────────────────────────────────────────── */
details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 18px;
  background: var(--surface);
}
details + details { margin-top: 10px; }
details summary { cursor: pointer; list-style: none; font-weight: 600; color: var(--ink); }
details summary::-webkit-details-marker { display: none; }
details[open] { border-color: var(--accent-light); }

/* ───────────────────────────────────────────────────────
   PRICING TOGGLE
──────────────────────────────────────────────────────── */
.switch {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.switch input { accent-color: var(--accent); }

/* ───────────────────────────────────────────────────────
   BLOG
──────────────────────────────────────────────────────── */
.blog-shell { background: var(--bg); }

.blog-home-hero { padding: 72px 0 52px; }
.blog-home-head { max-width: 760px; margin: 0 auto; }

.blog-index-layout {
  display: grid;
  gap: 48px;
  padding: 52px 0 80px;
}
@media (min-width: 900px) {
  .blog-index-layout { grid-template-columns: 1fr 300px; }
}

.blog-post-list { display: flex; flex-direction: column; gap: 0; }

.blog-post-row {
  display: grid;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.blog-post-row:first-child { padding-top: 0; }
@media (min-width: 640px) { .blog-post-row { grid-template-columns: 200px 1fr; } }

.blog-post-row-thumb { display: block; border-radius: var(--r); overflow: hidden; flex-shrink: 0; }
.blog-post-row-thumb img { width: 100%; height: 140px; object-fit: cover; }

.blog-post-row-body { display: flex; flex-direction: column; gap: 8px; }
.blog-row-meta { font-size: 12px; color: var(--muted-2); }
.blog-row-meta a { color: var(--accent-2); }

.blog-post-row-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--ink); line-height: 1.2;
  margin: 0;
}
.blog-post-row-title a { color: inherit; }
.blog-post-row-title a:hover { color: var(--accent); }

.blog-post-row-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; }

.blog-read-more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13.5px; font-weight: 600;
  color: var(--accent); margin-top: 4px;
}
.blog-read-more:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Sidebar */
.blog-index-sidebar { display: flex; flex-direction: column; gap: 20px; }
.blog-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
}
.blog-sidebar-kicker {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--muted-2); margin-bottom: 14px;
}
.blog-sidebar-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.blog-sidebar-list a { font-size: 14px; color: var(--muted); line-height: 1.4; }
.blog-sidebar-list a:hover { color: var(--ink); }

/* Pagination */
.pagination { margin-top: 32px; }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--surface);
  font-size: 14px; color: var(--muted);
}
.pagination .page-numbers.current {
  background: var(--accent); border-color: var(--accent); color: #fff;
}

/* Search form */
.blog-search-form { display: flex; gap: 8px; }
.blog-search-input {
  flex: 1; padding: 9px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); font-size: 14px; color: var(--ink);
  outline: none; transition: border-color .15s;
}
.blog-search-input:focus { border-color: var(--accent-light); }
.blog-search-submit {
  padding: 9px 14px;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 600; cursor: pointer;
}

/* Single post */
.blog-single-layout {
  display: grid;
  gap: 48px;
  padding: 52px 0 80px;
}
@media (min-width: 900px) { .blog-single-layout { grid-template-columns: 1fr 300px; } }

.blog-single-article { min-width: 0; }
.blog-article-meta { font-size: 13px; color: var(--muted-2); margin-bottom: 14px; }
.blog-article-meta a { color: var(--accent-2); }

.blog-single-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600; line-height: 1.12;
  color: var(--ink); margin: 0 0 24px;
}

.blog-single-thumb { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 32px; }
.blog-single-thumb img { width: 100%; }

.blog-single-content { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.blog-single-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--ink); margin: 40px 0 14px; }
.blog-single-content h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
.blog-single-content p { margin: 0 0 1.2em; }
.blog-single-content ul, .blog-single-content ol { margin: 0 0 1.2em; }

.blog-single-sidebar { display: flex; flex-direction: column; gap: 20px; }

/* Comments */
.blog-comments-wrap { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.comments-area h2.comments-title { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 20px; }

/* Blog inline forms */
.gasimo-blog-form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.gasimo-blog-form-card--lead { border-color: var(--accent-light); }
.gasimo-blog-form-kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); margin-bottom: 8px; }
.gasimo-blog-form-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.gasimo-blog-form-copy { font-size: 14px; color: var(--muted); margin: 0 0 18px; }

.gasimo-form-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 5px; margin-top: 14px; }
.gasimo-form-label:first-of-type { margin-top: 0; }
.gasimo-form-input {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); color: var(--ink);
  font-size: 15px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.gasimo-form-input:focus { border-color: var(--accent-light); box-shadow: 0 0 0 3px rgba(15,45,107,.07); }
.gasimo-form-submit { margin-top: 16px; width: 100%; }
.gasimo-form-note { font-size: 12px; color: var(--muted-2); margin-top: 12px; line-height: 1.5; }
.gasimo-form-note a { color: var(--accent-2); text-underline-offset: 2px; text-decoration: underline; }
.gasimo-form-grid { display: grid; gap: 14px; }
@media (min-width: 500px) { .gasimo-form-grid { grid-template-columns: 1fr 1fr; } }

.gasimo-consent-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 14px; font-size: 13px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.gasimo-consent-check input { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.gasimo-consent-check a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }

.gasimo-form-success { background: var(--success-bg); color: var(--success); border-radius: var(--r-sm); padding: 12px 16px; font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.gasimo-form-error { background: #fef2f2; color: #991b1b; border-radius: var(--r-sm); padding: 12px 16px; font-size: 14px; margin-bottom: 16px; }

/* ───────────────────────────────────────────────────────
   INTENT MODAL (homepage goal chooser)
──────────────────────────────────────────────────────── */
.g-intent-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.g-intent-modal[aria-hidden="true"] { display: none; }
.g-intent-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,18,40,.55);
  backdrop-filter: blur(6px);
}
.g-intent-card {
  position: relative; z-index: 1;
  width: min(680px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 24px 80px rgba(10,18,40,.2);
}
.g-intent-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  cursor: pointer; font-size: 14px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
}
.g-intent-kicker { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted-2); }
.g-intent-title { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--ink); margin: 6px 0 0; line-height: 1.1; }
.g-intent-subtitle { font-size: 14px; color: var(--muted); margin: 8px 0 0; }
.g-intent-steps { margin-top: 24px; }
.g-intent-q { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.g-intent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.g-intent-option {
  padding: 10px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--surface);
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  cursor: pointer; text-align: left;
  transition: border-color .15s, background .15s;
}
.g-intent-option:hover, .g-intent-option.is-selected {
  border-color: var(--accent-light); background: var(--accent-light); color: var(--accent-text);
}
.g-intent-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; align-items: center; }
.g-intent-link { font-size: 13px; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; margin-left: auto; }
.g-intent-note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.g-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; cursor: pointer; border: 1.5px solid transparent; }
.g-btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.g-btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.g-btn-ghost { background: transparent; color: var(--muted); border-color: var(--line-2); }
.g-btn-ghost:hover { color: var(--ink); border-color: var(--muted); }

/* ───────────────────────────────────────────────────────
   GASIMO TEAM PAGE
──────────────────────────────────────────────────────── */
#gasimo-team-page .cta--outline {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-2);
}
#gasimo-team-page .cta--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

#gasimo-team-page .team-hero { min-height: auto; }
#gasimo-team-page .team-hero-inner { position: relative; z-index: 1; }
#gasimo-team-page .team-hero-grid { display: grid; gap: 32px; align-items: start; }
@media (min-width: 900px) {
  #gasimo-team-page .team-hero-grid { grid-template-columns: 1.1fr .9fr; }
}

#gasimo-team-page .team-hero-title { margin-top: 14px; }
#gasimo-team-page .team-hero-copy { max-width: 720px; margin: 16px 0 0; }
#gasimo-team-page .team-section-lead { max-width: 720px; margin: 12px auto 0; }
#gasimo-team-page .team-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
#gasimo-team-page .team-mini-panel { height: 100%; }
#gasimo-team-page .team-mini-copy { max-width: 540px; margin: 10px 0 0; }

.team-stack { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.stack-person { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stack-person img { width: 60px; height: 60px; border-radius: 999px; object-fit: cover; border: 2px solid var(--line); }
.stack-person strong { font-size: 12px; color: var(--ink-2); text-align: center; }

.team-card-grid { margin-top: 32px; }
.team-card { display: flex; flex-direction: column; gap: 14px; }
.team-photo { width: 72px; height: 72px; border-radius: 999px; overflow: hidden; border: 2px solid var(--line); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-meta { display: flex; flex-direction: column; gap: 2px; }
.team-role { font-size: 13px; color: var(--muted); line-height: 1.4; margin: 0; }
.team-bio { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin: 0; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tags span { font-size: 11.5px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px 10px; color: var(--muted); }
.team-link a { font-size: 13.5px; color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }

.profile-stack { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.profile-card { display: grid; gap: 24px; }
@media (min-width: 768px) { .profile-card { grid-template-columns: 1fr 1fr; align-items: start; } }
.team-chip { font-size: 12px; font-weight: 600; color: var(--muted); margin: 4px 0 10px; text-transform: uppercase; letter-spacing: .04em; }
.profile-list { margin: 0; padding: 0 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
.profile-list li { font-size: 14px; color: var(--muted); line-height: 1.6; }

.team-cta-card { display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.team-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (min-width: 900px) {
  #gasimo-team-page .team-hero .cta, #gasimo-team-page .team-cta-actions .cta { min-width: 180px; }
}

/* ───────────────────────────────────────────────────────
   FIT CHECK FORM (inline on landing pages)
──────────────────────────────────────────────────────── */
.gasimo-fit-form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin: 14px 0 5px; }
.gasimo-fit-form input[type="text"],
.gasimo-fit-form input[type="email"],
.gasimo-fit-form input[type="url"],
.gasimo-fit-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); color: var(--ink);
  font-size: 15px; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.gasimo-fit-form input:focus, .gasimo-fit-form textarea:focus {
  border-color: var(--accent-light); box-shadow: 0 0 0 3px rgba(15,45,107,.07);
}

/* ───────────────────────────────────────────────────────
   ARCHIVE HERO (blog home / category pages)
──────────────────────────────────────────────────────── */
.blog-home-hero .badge { margin-bottom: 14px; }
.blog-home-hero .h1 { margin-top: 10px; }

/* ───────────────────────────────────────────────────────
   RESPONSIVE UTILITIES
──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 64px 0 52px; }
  .h1 { font-size: clamp(34px, 9vw, 50px); }
  .h2 { font-size: clamp(24px, 6vw, 32px); }
  .lead { font-size: 16px; }
  .card { padding: 20px; }
  .cta { padding: 12px 20px; }
  .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .g-intent-grid { grid-template-columns: 1fr; }
}

/* ───────────────────────────────────────────────────────
   PRINT / REDUCED MOTION
──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ───────────────────────────────────────────────────────
   POST GRID (homepage blog fallback)
──────────────────────────────────────────────────────── */
.post-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .post-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.post-card { display: block; text-decoration: none; color: inherit; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); transition: box-shadow .18s, transform .18s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-card-thumb img { width: 100%; height: auto; display: block; }
.post-card-body { padding: 18px; }
.post-card-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); margin: 0 0 8px; line-height: 1.2; }
.post-card-excerpt { opacity: .75; font-size: 14px; line-height: 1.5; }

/* ───────────────────────────────────────────────────────
   BLOG SINGLE — updated layout
   (subscribe top-right, comments below article, inline lead form)
──────────────────────────────────────────────────────── */
.blog-single-layout {
  display: grid;
  gap: 48px;
  padding: 52px 0 80px;
  align-items: start;
}
@media (min-width: 900px) {
  .blog-single-layout { grid-template-columns: 1fr 300px; }
}

.blog-single-main { min-width: 0; }

/* Inline lead form — softer border to distinguish from main content */
.blog-inline-lead .gasimo-blog-form-card {
  border-left: 3px solid var(--accent-light);
}

/* Sidebar sticks on desktop */
@media (min-width: 900px) {
  .blog-single-sidebar {
    position: sticky;
    top: 88px;
  }
}

/* Comments area */
.blog-comments-wrap .comments-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}
.blog-comments-wrap .comment-list { padding: 0; list-style: none; }
.blog-comments-wrap .comment { padding: 18px 0; border-bottom: 1px solid var(--line); }

/* ───────────────────────────────────────────────────────
   GASIMO VIDEO PROOF SECTION (.gasimo-video-proof)
   Used on design-agency-outbound and other playbook pages
──────────────────────────────────────────────────────── */
.gasimo-video-proof {
  background: var(--surface-2);
  padding: 80px 0;
}

.gasimo-video-proof__wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 860px) {
  .gasimo-video-proof__wrap {
    grid-template-columns: 1fr 1fr;
  }
}

/* Eyebrow — styled like a .badge */
.gasimo-video-proof__eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--warm-light);
  color: var(--warm);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

/* Heading */
.gasimo-video-proof__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -.01em;
}

/* Lead paragraph */
.gasimo-video-proof__lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
}

/* Pull quote block */
.gasimo-video-proof__quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--r);
  padding: 22px 24px 20px;
  margin: 0 0 18px;
}
.gasimo-video-proof__quote::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--accent-light);
  pointer-events: none;
}
.gasimo-video-proof__quote p {
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 14px;
}
.gasimo-video-proof__quote span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.gasimo-video-proof__quote a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Note below quote */
.gasimo-video-proof__note {
  font-size: 14px;
  color: var(--muted-2);
  margin: 0;
}

/* Video embed — 16:9 aspect ratio */
.gasimo-video-proof__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.gasimo-video-proof__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .gasimo-video-proof { padding: 56px 0; }
  .gasimo-video-proof__quote::before { font-size: 48px; }
}

/* ───────────────────────────────────────────────────────
   COMMENT FORM — Post Comment button
──────────────────────────────────────────────────────── */
#respond .form-submit {
  margin-top: 20px;
}
#respond .submit,
#respond input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
  border-radius: var(--r);
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
  -webkit-appearance: none;
  appearance: none;
}
#respond .submit:hover,
#respond input[type="submit"]:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
#respond .comment-form-comment textarea,
#respond .comment-form input[type="text"],
#respond .comment-form input[type="email"],
#respond .comment-form input[type="url"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
#respond .comment-form-comment textarea:focus,
#respond .comment-form input:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(15,45,107,.07);
}
#respond .comment-reply-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 18px;
}


/* ===================================================================
   MID-ARTICLE COMPACT LEAD FORM  (.gasimo-compact-lead)
=================================================================== */
.gasimo-compact-lead {
  margin: 40px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid var(--accent-light);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gasimo-compact-lead__inner {
  display: grid;
  gap: 28px;
  padding: 32px;
}
@media (min-width: 800px) {
  .gasimo-compact-lead__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
  }
}

.gasimo-compact-lead__kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--warm);
  background: var(--warm-light);
  border: 1px solid var(--warm-border);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  display: inline-flex;
  margin-bottom: 12px;
}

.gasimo-compact-lead__headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0 0 10px;
}

.gasimo-compact-lead__copy p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Right column: stacked fields, each full-width */
.gasimo-compact-lead__form { display: flex; flex-direction: column; gap: 10px; }

.gasimo-compact-lead__fields {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.gasimo-compact-lead__input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.gasimo-compact-lead__input:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(15,45,107,.07);
}
.gasimo-compact-lead__input::placeholder {
  color: var(--muted-2);
}

.gasimo-compact-lead__sell {
  grid-column: 1 / -1; /* "What do you sell?" spans full width */
}

.gasimo-compact-lead__submit {
  width: 100%;
}

.gasimo-compact-lead__consent {
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.5;
}
.gasimo-compact-lead__consent input { accent-color: var(--accent); }
.gasimo-compact-lead__consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ===================================================================
   STICKY SCROLL-TRIGGERED CTA BAR  (#gasimo-sticky-cta)
=================================================================== */
.gasimo-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  /* hidden attr hides it before JS fires; transition handles reveal */
}

.gasimo-sticky-cta--visible {
  transform: translateY(0);
}

.gasimo-sticky-cta[hidden] {
  display: none !important;
}

.gasimo-sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: var(--ink);
  color: #fff;
  flex-wrap: wrap;
}

.gasimo-sticky-cta__text {
  flex: 1;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(255,255,255,.88);
  margin: 0;
}
.gasimo-sticky-cta__text strong {
  color: #fff;
  font-weight: 700;
}

.gasimo-sticky-cta__btn {
  background: #fff;
  color: var(--ink) !important;
  border: none;
  flex-shrink: 0;
  font-weight: 700;
  padding: 9px 18px;
}
.gasimo-sticky-cta__btn:hover {
  background: var(--surface-2);
  opacity: 1;
  transform: none;
  box-shadow: none;
}

.gasimo-sticky-cta__close {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font-size: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, color .15s;
}
.gasimo-sticky-cta__close:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

@media (max-width: 600px) {
  .gasimo-sticky-cta__inner { gap: 10px; padding: 12px 16px; }
  .gasimo-sticky-cta__text  { font-size: 13px; }
}
