/* ================================================================
   GLOBAL GANDHI PETITION SYSTEM — Complete Modern Design v3
   Works standalone with any WordPress theme
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Root Variables ─────────────────────────────────────────────── */
:root {
  --gg-saffron:      #E8621A;
  --gg-saffron-dk:   #C4511A;
  --gg-saffron-pale: #FDF0E8;
  --gg-green:        #1B6B3A;
  --gg-green-lt:     #2E8B57;
  --gg-green-pale:   #EAF4EE;
  --gg-navy:         #1A1F3A;
  --gg-navy-lt:      #2D3561;
  --gg-gold:         #C8952A;
  --gg-cream:        #FAF8F3;
  --gg-sand:         #F2EDE0;
  --gg-white:        #FFFDF9;
  --gg-text:         #1C1C1C;
  --gg-text-mid:     #4A4A4A;
  --gg-text-light:   #7A7A7A;
  --gg-border:       rgba(26,31,58,0.12);
  --gg-radius:       4px;
  --gg-shadow:       0 4px 24px rgba(26,31,58,0.08);
  --gg-shadow-lg:    0 12px 48px rgba(26,31,58,0.14);
}

/* ── Base Wrap ─────────────────────────────────────────────────── */
.ggp-page-wrap {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--gg-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.ggp-page-wrap * { box-sizing: border-box; }

/* ── Tricolor Bar ─────────────────────────────────────────────── */
.ggp-tricolor {
  height: 5px;
  background: linear-gradient(90deg, var(--gg-saffron) 0 33.3%, #fff 33.3% 66.6%, var(--gg-green) 66.6%);
  position: relative;
}
.ggp-tricolor::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 14px; height: 14px;
  background: var(--gg-navy);
  border-radius: 50%;
}

/* ── Hero Section ─────────────────────────────────────────────── */
.ggp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  background: var(--gg-navy);
  overflow: hidden;
  position: relative;
}
.ggp-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5%;
  position: relative;
  z-index: 1;
}
.ggp-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gg-gold);
  margin-bottom: 1.6rem;
}
.ggp-hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gg-gold);
  flex-shrink: 0;
}
.ggp-hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.6rem;
}
.ggp-hero__headline em {
  font-style: italic;
  color: var(--gg-saffron);
}
.ggp-hero__body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.ggp-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.ggp-hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.ggp-hero-stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gg-gold);
  line-height: 1;
}
.ggp-hero-stat__label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 5px;
}
.ggp-hero__right {
  position: relative;
  background: linear-gradient(135deg, var(--gg-saffron-pale) 0%, var(--gg-cream) 50%, var(--gg-green-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.ggp-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--gg-navy) 0, var(--gg-navy) 1px, transparent 0, transparent 50%);
  background-size: 18px 18px;
}
.ggp-hero__quote-card {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--gg-radius);
  border-left: 4px solid var(--gg-saffron);
  box-shadow: var(--gg-shadow-lg);
  max-width: 420px;
  width: 100%;
}
.ggp-hero__quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gg-saffron);
  opacity: 0.18;
  display: block;
  margin-bottom: 1rem;
}
.ggp-hero__quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gg-navy);
  margin-bottom: 1.2rem;
}
.ggp-hero__quote-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gg-text-light);
}
.ggp-hero__quote-author strong { color: var(--gg-navy); }
.ggp-hero__badge {
  position: absolute;
  top: 2rem; right: 2rem;
  background: var(--gg-green);
  color: #fff;
  border-radius: 50%;
  width: 84px; height: 84px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
}
.ggp-hero__badge span {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gg-gold);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.ggp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  border-radius: var(--gg-radius);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.ggp-btn--saffron  { background: var(--gg-saffron); color: #fff; border-color: var(--gg-saffron); }
.ggp-btn--saffron:hover { background: var(--gg-saffron-dk); border-color: var(--gg-saffron-dk); color: #fff; transform: translateY(-1px); }
.ggp-btn--ghost    { background: transparent; color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.28); }
.ggp-btn--ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.ggp-btn--navy     { background: var(--gg-navy); color: #fff; border-color: var(--gg-navy); }
.ggp-btn--navy:hover { background: var(--gg-saffron); border-color: var(--gg-saffron); color: #fff; }
.ggp-btn--outline  { background: transparent; color: var(--gg-navy); border-color: var(--gg-border); }
.ggp-btn--outline:hover { border-color: var(--gg-saffron); color: var(--gg-saffron); }
.ggp-btn--block    { width: 100%; justify-content: center; padding: 14px; }
.ggp-btn:disabled  { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ── How It Works ─────────────────────────────────────────────── */
.ggp-how-section {
  padding: 6rem 5%;
  background: var(--gg-white);
}
.ggp-section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gg-saffron);
  margin-bottom: 0.8rem;
}
.ggp-section-eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--gg-saffron);
  flex-shrink: 0;
}
.ggp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gg-navy);
  margin: 0 0 0.7rem;
}
.ggp-section-title em { font-style: italic; color: var(--gg-saffron); }
.ggp-section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gg-text-mid);
  line-height: 1.8;
  max-width: 52ch;
  margin: 0 0 3rem;
}
.ggp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(200,149,42,0.15);
  border-radius: var(--gg-radius);
  overflow: hidden;
}
.ggp-step {
  background: var(--gg-white);
  padding: 2.2rem 1.8rem;
  transition: background 0.2s;
}
.ggp-step:hover { background: var(--gg-cream); }
.ggp-step__num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gg-sand);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.ggp-step__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 1rem;
}
.ggp-step__icon--s { background: var(--gg-saffron-pale); }
.ggp-step__icon--g { background: var(--gg-green-pale); }
.ggp-step__icon--n { background: rgba(26,31,58,0.06); }
.ggp-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gg-navy);
  margin-bottom: 0.6rem;
}
.ggp-step__body {
  font-size: 13px;
  font-weight: 300;
  color: var(--gg-text-mid);
  line-height: 1.75;
}

/* ── Petition List Section ────────────────────────────────────── */
.ggp-list-section {
  padding: 5rem 5% 6rem;
  background: var(--gg-cream);
}
.ggp-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Stats strip */
.ggp-stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(200,149,42,0.2);
  border-radius: var(--gg-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.ggp-stat-cell {
  background: var(--gg-white);
  padding: 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ggp-stat-cell__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ggp-stat-cell__icon--s { background: var(--gg-saffron-pale); }
.ggp-stat-cell__icon--g { background: var(--gg-green-pale); }
.ggp-stat-cell__icon--n { background: rgba(26,31,58,0.06); }
.ggp-stat-cell__num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gg-navy);
  line-height: 1;
  display: block;
}
.ggp-stat-cell__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gg-text-light);
  margin-top: 2px;
  display: block;
}

/* Search row */
.ggp-search-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.ggp-search-bar input[type="search"] {
  flex: 1;
  min-width: 200px;
  padding: 11px 16px;
  border: 1.5px solid var(--gg-border);
  border-radius: var(--gg-radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--gg-white);
  color: var(--gg-text);
  outline: none;
  transition: border-color 0.2s;
}
.ggp-search-bar input[type="search"]:focus { border-color: var(--gg-saffron); }
.ggp-search-bar select {
  padding: 11px 16px;
  border: 1.5px solid var(--gg-border);
  border-radius: var(--gg-radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--gg-white);
  color: var(--gg-text);
  outline: none;
  cursor: pointer;
  min-width: 160px;
}
.ggp-search-bar select:focus { border-color: var(--gg-saffron); }

/* Petition grid */
.ggp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(200,149,42,0.18);
  border-radius: var(--gg-radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

/* Petition card */
.ggp-card {
  background: var(--gg-white);
  display: flex;
  flex-direction: column;
  transition: background 0.18s;
}
.ggp-card:hover { background: var(--gg-cream); }
.ggp-card__img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.ggp-card__body { padding: 1.6rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ggp-card__cat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gg-saffron);
  margin-bottom: 0.7rem;
}
.ggp-card__cat::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gg-saffron);
  display: block;
  flex-shrink: 0;
}
.ggp-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gg-navy);
  margin: 0 0 5px;
  text-decoration: none;
  display: block;
}
.ggp-card__title:hover { color: var(--gg-saffron); }
.ggp-card__target {
  font-size: 11px;
  color: var(--gg-text-light);
  margin: 0 0 10px;
}
.ggp-card__excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--gg-text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.ggp-card__deadline {
  font-size: 11px;
  color: var(--gg-saffron);
  font-weight: 500;
  margin-bottom: 10px;
}
/* Progress bar */
.ggp-bar {
  background: var(--gg-sand);
  border-radius: 2px;
  height: 3px;
  overflow: hidden;
  margin-bottom: 7px;
}
.ggp-bar__fill {
  height: 3px;
  background: linear-gradient(90deg, var(--gg-saffron), var(--gg-gold));
  border-radius: 2px;
  transition: width 0.6s ease;
}
.ggp-bar--lg { height: 6px; }
.ggp-bar--lg .ggp-bar__fill { height: 6px; }
.ggp-bar__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gg-text-light);
  margin-bottom: 14px;
}
.ggp-bar__meta strong { color: var(--gg-navy); font-weight: 600; }
.ggp-bar__pct { color: var(--gg-saffron); font-weight: 600; }

/* Empty state */
.ggp-empty {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--gg-white);
  border-radius: var(--gg-radius);
  border: 1.5px dashed var(--gg-border);
}
.ggp-empty__icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.ggp-empty h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gg-navy); margin: 0 0 0.5rem; }
.ggp-empty p { font-size: 14px; color: var(--gg-text-light); margin: 0; }

/* Flash message */
.ggp-flash {
  padding: 14px 20px;
  border-radius: var(--gg-radius);
  margin-bottom: 1.5rem;
  font-size: 14px;
  font-weight: 500;
}
.ggp-flash--success { background: var(--gg-green-pale); color: var(--gg-green); border: 1px solid rgba(27,107,58,0.2); }
.ggp-flash--error   { background: #fff0f0; color: #9b1c1c; border: 1px solid rgba(155,28,28,0.2); }

/* Trust banner */
.ggp-trust-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gg-green-pale);
  border: 1px solid rgba(27,107,58,0.18);
  border-radius: var(--gg-radius);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--gg-green);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* ── Single Petition ──────────────────────────────────────────── */
.ggp-single-wrap {
  padding: 4rem 5%;
  background: var(--gg-white);
  min-height: 70vh;
}
.ggp-single-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.ggp-single__hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--gg-radius);
  margin-bottom: 2rem;
  display: block;
}
.ggp-single__cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gg-saffron);
  margin-bottom: 0.8rem;
}
.ggp-single__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--gg-navy);
  margin: 0 0 1rem;
}
.ggp-single__target {
  font-size: 14px;
  color: var(--gg-text-mid);
  border-left: 3px solid var(--gg-saffron);
  padding-left: 12px;
  margin: 0 0 0.6rem;
}
.ggp-single__deadline {
  font-size: 13px;
  color: var(--gg-saffron);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.ggp-single__description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gg-text-mid);
  padding-top: 1.5rem;
  border-top: 1px solid var(--gg-sand);
  margin-bottom: 2rem;
}
.ggp-single__description p {
  margin: 0 0 1.2rem;
}
.ggp-single__description p:last-child { margin-bottom: 0; }
.ggp-single__description ul,
.ggp-single__description ol {
  margin: 0 0 1.2rem 1.5rem;
  padding: 0;
}
.ggp-single__description ul { list-style: disc; }
.ggp-single__description ol { list-style: decimal; }
.ggp-single__description li {
  margin-bottom: 0.4rem;
  line-height: 1.8;
}
.ggp-single__description a {
  color: var(--gg-saffron);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ggp-single__description a:hover { color: var(--gg-saffron-dk); }
.ggp-single__description strong,
.ggp-single__description b { font-weight: 600; color: var(--gg-navy); }
.ggp-single__description em,
.ggp-single__description i { font-style: italic; }
.ggp-single__description h2,
.ggp-single__description h3,
.ggp-single__description h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gg-navy);
  margin: 1.5rem 0 0.6rem;
  line-height: 1.3;
}
.ggp-single__description h2 { font-size: 1.4rem; }
.ggp-single__description h3 { font-size: 1.2rem; }
.ggp-single__description h4 { font-size: 1rem; }
.ggp-single__description blockquote {
  border-left: 3px solid var(--gg-saffron);
  margin: 1.2rem 0;
  padding: 0.8rem 1.2rem;
  background: var(--gg-saffron-pale);
  font-style: italic;
  color: var(--gg-text-mid);
  border-radius: 0 var(--gg-radius) var(--gg-radius) 0;
}
.ggp-single__description img {
  max-width: 100%;
  border-radius: var(--gg-radius);
  margin: 0.8rem 0;
  display: block;
}
.ggp-single__description hr {
  border: none;
  border-top: 1px solid var(--gg-sand);
  margin: 1.5rem 0;
}

/* Attachments */
.ggp-attachments-box {
  background: var(--gg-cream);
  border: 1px solid var(--gg-sand);
  border-radius: var(--gg-radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.ggp-attachments-box h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gg-text-light); margin: 0 0 10px;
}
.ggp-att-list { display: flex; flex-wrap: wrap; gap: 7px; }
.ggp-att-item {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px;
  border: 1px solid var(--gg-border);
  border-radius: var(--gg-radius);
  font-size: 12px; font-weight: 500;
  color: var(--gg-navy); text-decoration: none;
  background: var(--gg-white);
  transition: all 0.15s;
}
.ggp-att-item:hover { border-color: var(--gg-saffron); color: var(--gg-saffron); }

/* Signatures list */
.ggp-sigs-section { margin-top: 2rem; }
.ggp-sigs-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gg-navy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--gg-sand);
}
.ggp-sig-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gg-sand);
}
.ggp-sig-avatar {
  width: 38px; height: 38px; min-width: 38px;
  border-radius: 50%;
  background: var(--gg-saffron-pale);
  color: var(--gg-saffron);
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ggp-sig-name { font-size: 14px; font-weight: 600; color: var(--gg-navy); display: block; }
.ggp-sig-country { font-size: 11px; color: var(--gg-text-light); margin-left: 6px; }
.ggp-sig-comment { font-size: 13px; font-weight: 300; color: var(--gg-text-mid); margin: 3px 0 0; font-style: italic; }
.ggp-sig-date { font-size: 11px; color: var(--gg-text-light); }

/* ── Sidebar Cards ────────────────────────────────────────────── */
.ggp-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }

.ggp-progress-card {
  background: var(--gg-navy);
  color: #fff;
  padding: 1.8rem;
  border-radius: var(--gg-radius);
}
.ggp-counter { margin-bottom: 1rem; }
.ggp-counter__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900;
  color: var(--gg-gold); line-height: 1;
}
.ggp-counter__label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: block; margin-top: 4px;
}
.ggp-counter__label strong { color: rgba(255,255,255,0.8); }
.ggp-pct-text { font-size: 12px; color: rgba(255,255,255,0.4); display: block; margin-top: 7px; }
.ggp-milestone-pill {
  margin-top: 12px;
  background: rgba(200,149,42,0.18);
  border: 1px solid rgba(200,149,42,0.35);
  border-radius: var(--gg-radius);
  padding: 8px 12px;
  font-size: 12px; color: var(--gg-gold);
}
.ggp-days-left { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.45); }

.ggp-sign-card {
  background: var(--gg-cream);
  border: 1px solid rgba(200,149,42,0.2);
  border-radius: var(--gg-radius);
  padding: 1.6rem;
}
.ggp-sign-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--gg-navy);
  margin: 0 0 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(200,149,42,0.2);
}

/* Form fields */
.ggp-field { margin-bottom: 13px; }
.ggp-field label {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gg-text-light); margin-bottom: 5px;
}
.ggp-field input,
.ggp-field select,
.ggp-field textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid rgba(26,31,58,0.16);
  border-radius: var(--gg-radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--gg-text);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.ggp-field input:focus,
.ggp-field select:focus,
.ggp-field textarea:focus { border-color: var(--gg-saffron); box-shadow: 0 0 0 3px rgba(232,98,26,0.08); }

.ggp-checkboxes { margin: 12px 0; }
.ggp-checkbox-label {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--gg-text-mid);
  cursor: pointer; margin-bottom: 8px; line-height: 1.5;
}
.ggp-checkbox-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--gg-saffron); }

.ggp-form-msg {
  padding: 10px 14px;
  border-radius: var(--gg-radius);
  font-size: 13px;
  margin-bottom: 12px;
}
.ggp-form-msg--success { background: var(--gg-green-pale); color: var(--gg-green); border: 1px solid rgba(27,107,58,0.2); }
.ggp-form-msg--error   { background: #fff0f0; color: #9b1c1c; border: 1px solid rgba(155,28,28,0.2); }

/* Share card */
.ggp-share-card {
  background: var(--gg-white);
  border: 1px solid var(--gg-sand);
  border-radius: var(--gg-radius);
  padding: 1.4rem;
}
.ggp-share-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--gg-navy);
  margin: 0 0 1rem;
}
.ggp-share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 10px; }
.ggp-share-btn {
  display: block;
  padding: 9px 6px;
  border-radius: var(--gg-radius);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-align: center; text-decoration: none;
  cursor: pointer; border: none;
  transition: opacity 0.15s; font-family: 'Inter', sans-serif;
}
.ggp-share-btn:hover { opacity: 0.82; }
.ggp-share-btn--wa  { background: #25D366; color: #fff; }
.ggp-share-btn--fb  { background: #1877F2; color: #fff; }
.ggp-share-btn--tw  { background: #1DA1F2; color: #fff; }
.ggp-share-btn--em  { background: var(--gg-navy); color: #fff; }
.ggp-share-btn--cp  { background: var(--gg-sand); color: var(--gg-navy); }
.ggp-embed-details summary { font-size: 11px; color: var(--gg-text-light); cursor: pointer; padding: 5px 0; }
.ggp-embed-code { width: 100%; height: 58px; font-size: 10px; border: 1px solid var(--gg-sand); border-radius: var(--gg-radius); padding: 7px; resize: none; font-family: monospace; box-sizing: border-box; margin-top: 6px; }

/* ── Create Petition Section ────────────────────────────────── */
.ggp-create-section {
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  background: var(--gg-white);
}
.ggp-create__intro { }
.ggp-trust-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.ggp-trust-point { display: flex; align-items: flex-start; gap: 12px; }
.ggp-trust-point__icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.ggp-trust-point__icon--s { background: var(--gg-saffron-pale); }
.ggp-trust-point__icon--g { background: var(--gg-green-pale); }
.ggp-trust-point__icon--n { background: rgba(26,31,58,0.06); }
.ggp-trust-point h4 { font-size: 14px; font-weight: 600; color: var(--gg-navy); margin: 0 0 3px; }
.ggp-trust-point p  { font-size: 13px; font-weight: 300; color: var(--gg-text-light); line-height: 1.6; margin: 0; }

.ggp-create-form-card {
  background: var(--gg-cream);
  border: 1px solid rgba(200,149,42,0.2);
  border-radius: var(--gg-radius);
  overflow: hidden;
}
.ggp-create-form-card__header {
  background: var(--gg-navy);
  padding: 1.4rem 1.8rem;
}
.ggp-create-form-card__header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700; color: #fff; margin: 0;
}
.ggp-create-form-inner { padding: 1.6rem 1.8rem; }
.ggp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ggp-create-form-inner .ggp-field label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gg-text-light); }
.ggp-login-gate {
  padding: 2rem;
  text-align: center;
  background: rgba(200,149,42,0.06);
  border: 1px dashed rgba(200,149,42,0.3);
  border-radius: var(--gg-radius);
  margin: 1rem 1.8rem 1.8rem;
}
.ggp-login-gate p { font-size: 14px; color: var(--gg-text-mid); margin-bottom: 1rem; }
.ggp-login-gate .ggp-btn { margin: 4px; }
.ggp-form-note { font-size: 11px; color: var(--gg-text-light); text-align: center; margin-top: 8px; }
.ggp-create-msg { font-size: 13px; padding: 10px 14px; border-radius: var(--gg-radius); margin-bottom: 12px; }

/* Attachment chip */
.ggp-att-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.ggp-att-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: var(--gg-sand);
  border-radius: var(--gg-radius);
  font-size: 11px; color: var(--gg-navy);
}
.ggp-att-chip button {
  background: none; border: none; cursor: pointer;
  color: #aaa; font-size: 13px; line-height: 1; padding: 0;
}
.ggp-att-chip button:hover { color: #c00; }

/* ── Values Strip ─────────────────────────────────────────────── */
.ggp-values-strip {
  background: var(--gg-navy);
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.ggp-value__word {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 900;
  color: var(--gg-gold); display: block; line-height: 1; margin-bottom: 3px;
}
.ggp-value__title { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 0.5rem; }
.ggp-value__body  { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.75; }

/* ── Auth Forms ─────────────────────────────────────────────── */
.ggp-auth-wrap { max-width: 480px; margin: 3rem auto; padding: 0 1rem; }
.ggp-auth-card { background: var(--gg-white); border-radius: var(--gg-radius); box-shadow: var(--gg-shadow-lg); overflow: hidden; }
.ggp-auth-header { background: var(--gg-navy); padding: 2rem 2.2rem; }
.ggp-auth-title  { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0 0 4px; }
.ggp-auth-sub    { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }
.ggp-auth-form   { padding: 1.8rem 2.2rem; }
.ggp-auth-error  { margin: 0 2.2rem; padding: 10px 14px; background: #fff0f0; color: #9b1c1c; border: 1px solid rgba(155,28,28,0.2); border-radius: var(--gg-radius); font-size: 13px; }
.ggp-auth-success { margin: 0 2.2rem; padding: 10px 14px; background: var(--gg-green-pale); color: var(--gg-green); border: 1px solid rgba(27,107,58,0.2); border-radius: var(--gg-radius); font-size: 13px; }
.ggp-auth-field { margin-bottom: 14px; }
.ggp-auth-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gg-text-light); margin-bottom: 5px; }
.ggp-auth-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(26,31,58,0.15);
  border-radius: var(--gg-radius);
  font-size: 14px; font-family: 'Inter', sans-serif;
  background: var(--gg-white); color: var(--gg-text);
  outline: none; box-sizing: border-box; transition: border-color 0.2s;
}
.ggp-auth-input:focus { border-color: var(--gg-saffron); }
.ggp-auth-submit {
  width: 100%; padding: 13px;
  background: var(--gg-saffron); color: #fff;
  border: none; border-radius: var(--gg-radius);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background 0.18s; margin-top: 6px;
}
.ggp-auth-submit:hover { background: var(--gg-saffron-dk); }
.ggp-auth-footer {
  text-align: center; padding: 1.2rem 2.2rem;
  background: var(--gg-cream); border-top: 1px solid var(--gg-sand);
  font-size: 13px; color: var(--gg-text-mid);
}
.ggp-auth-link { color: var(--gg-saffron); text-decoration: none; font-weight: 500; }
.ggp-auth-link:hover { text-decoration: underline; }

/* ── Pagination ──────────────────────────────────────────────── */
.ggp-pagination { margin: 2rem 0; display: flex; justify-content: center; gap: 4px; flex-wrap: wrap; }
.ggp-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: var(--gg-radius);
  border: 1.5px solid var(--gg-border);
  color: var(--gg-navy); text-decoration: none; font-size: 13px; font-weight: 500;
  transition: all 0.15s;
}
.ggp-pagination .page-numbers:hover { border-color: var(--gg-saffron); color: var(--gg-saffron); }
.ggp-pagination .page-numbers.current { background: var(--gg-navy); color: #fff; border-color: var(--gg-navy); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ggp-hero         { grid-template-columns: 1fr; min-height: auto; }
  .ggp-hero__left   { padding: 4rem 5%; }
  .ggp-hero__right  { min-height: 360px; }
  .ggp-steps        { grid-template-columns: 1fr; }
  .ggp-grid         { grid-template-columns: 1fr 1fr; }
  .ggp-single-layout{ grid-template-columns: 1fr; }
  .ggp-sidebar      { order: 2; }
  .ggp-create-section { grid-template-columns: 1fr; gap: 2rem; }
  .ggp-values-strip { grid-template-columns: 1fr 1fr; }
  .ggp-stats-strip  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ggp-hero__left   { padding: 3rem 4%; }
  .ggp-hero__stats  { gap: 1.5rem; }
  .ggp-grid         { grid-template-columns: 1fr; }
  .ggp-share-grid   { grid-template-columns: 1fr; }
  .ggp-values-strip { grid-template-columns: 1fr; padding: 3rem 4%; }
  .ggp-form-row     { grid-template-columns: 1fr; }
  .ggp-how-section,.ggp-list-section,.ggp-create-section { padding: 3rem 4%; }
}

/* ================================================================
   AUTH PAGES — Modern Split-Screen Design
   ================================================================ */
.gg-auth-page {
  min-height: 100vh;
  background: var(--gg-white);
}
.gg-auth-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left brand panel */
.gg-auth-brand {
  background: var(--gg-navy);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.gg-auth-brand::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(232,98,26,0.06);
}
.gg-auth-brand__tricolor {
  height: 4px;
  background: linear-gradient(90deg, var(--gg-saffron) 0 33.3%, #fff 33.3% 66.6%, var(--gg-green) 66.6%);
  flex-shrink: 0;
}
.gg-auth-brand__inner {
  padding: 3rem 3.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gg-auth-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.gg-auth-brand__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gg-saffron);
  flex-shrink: 0;
}
.gg-auth-brand__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.2rem;
}
.gg-auth-brand__headline em {
  font-style: italic;
  color: var(--gg-saffron);
}
.gg-auth-brand__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 38ch;
  margin-bottom: 2.5rem;
}
.gg-auth-brand__values {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gg-auth-brand__value {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}
.gg-auth-brand__value span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gg-gold);
  margin-bottom: 2px;
}
.gg-auth-brand__perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0.5rem;
}
.gg-auth-brand__perk {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* Right form panel */
.gg-auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--gg-white);
}
.gg-auth-form-wrap {
  width: 100%;
  max-width: 400px;
}
.gg-auth-form-header {
  margin-bottom: 2rem;
}
.gg-auth-form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gg-navy);
  margin: 0 0 6px;
  line-height: 1.2;
}
.gg-auth-form-header p {
  font-size: 14px;
  color: var(--gg-text-light);
  margin: 0;
}

.gg-auth-alert {
  padding: 12px 16px;
  border-radius: var(--gg-radius);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.gg-auth-alert--error   { background: #fff0f0; color: #9b1c1c; border: 1px solid rgba(155,28,28,0.2); }
.gg-auth-alert--success { background: var(--gg-green-pale); color: var(--gg-green); border: 1px solid rgba(27,107,58,0.2); }

.gg-auth-form { display: flex; flex-direction: column; gap: 0; }

.gg-auth-field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.gg-auth-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gg-text-light);
  margin-bottom: 6px;
  display: block;
}
.gg-auth-field input[type="text"],
.gg-auth-field input[type="email"],
.gg-auth-field input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(26,31,58,0.15);
  border-radius: var(--gg-radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--gg-white);
  color: var(--gg-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.gg-auth-field input:focus {
  border-color: var(--gg-saffron);
  box-shadow: 0 0 0 3px rgba(232,98,26,0.1);
}
.gg-auth-field--row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.gg-auth-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gg-auth-hint {
  font-size: 11px;
  color: var(--gg-text-light);
  margin-top: 4px;
}
.gg-auth-password-wrap {
  position: relative;
}
.gg-auth-password-wrap input { padding-right: 56px; }
.gg-auth-toggle-pw {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  font-size: 11px; font-weight: 600;
  color: var(--gg-saffron);
  cursor: pointer; padding: 4px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gg-auth-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gg-text-mid);
  cursor: pointer;
}
.gg-auth-checkbox input { accent-color: var(--gg-saffron); flex-shrink: 0; }
.gg-auth-checkbox--terms { margin-bottom: 1.2rem; }
.gg-auth-checkbox--terms a { color: var(--gg-saffron); text-decoration: none; }
.gg-auth-forgot {
  font-size: 12px;
  color: var(--gg-saffron);
  text-decoration: none;
  font-weight: 500;
}
.gg-auth-forgot:hover { text-decoration: underline; }
.gg-auth-submit {
  width: 100%;
  padding: 14px;
  background: var(--gg-saffron);
  color: #fff;
  border: none;
  border-radius: var(--gg-radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s;
  margin-top: 0.3rem;
}
.gg-auth-submit:hover { background: var(--gg-saffron-dk); transform: translateY(-1px); }
.gg-auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 13px;
  color: var(--gg-text-light);
}
.gg-auth-switch a { color: var(--gg-saffron); font-weight: 600; text-decoration: none; margin-left: 4px; }
.gg-auth-switch a:hover { text-decoration: underline; }
.gg-auth-back {
  text-align: center;
  margin-top: 1.2rem;
}
.gg-auth-back a { font-size: 12px; color: var(--gg-text-light); text-decoration: none; }
.gg-auth-back a:hover { color: var(--gg-saffron); }

/* Logged in state */
.gg-auth-logged-in {
  max-width: 480px;
  margin: 2rem auto;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--gg-white);
  border: 1px solid var(--gg-sand);
  border-radius: var(--gg-radius);
  padding: 1.6rem;
}
.gg-auth-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gg-saffron-pale);
  color: var(--gg-saffron);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gg-auth-welcome { font-size: 15px; color: var(--gg-navy); margin: 0; }

/* Login gate improved */
.ggp-login-gate {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(200,149,42,0.05);
  border: 1.5px dashed rgba(200,149,42,0.3);
  border-radius: var(--gg-radius);
  margin: 0.5rem 1.8rem 1.8rem;
}
.ggp-login-gate__icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.ggp-login-gate h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gg-navy);
  margin: 0 0 0.5rem;
}
.ggp-login-gate p {
  font-size: 13px;
  color: var(--gg-text-mid);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.ggp-login-gate__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Auth page responsive */
@media (max-width: 768px) {
  .gg-auth-split { grid-template-columns: 1fr; }
  .gg-auth-brand { min-height: 220px; padding: 0; }
  .gg-auth-brand__inner { padding: 2rem; }
  .gg-auth-brand__headline { font-size: 1.6rem; }
  .gg-auth-brand__sub { display: none; }
  .gg-auth-form-side { padding: 2rem 1.2rem; }
  .gg-auth-field-row { grid-template-columns: 1fr; }
}
