/* ============================================================================
 * GC Pages — page-specific styles for ported showcase pages.
 *
 * Each ported page contributes a section here, scoped under
 * .gc-page--<slug>. Page-agnostic styles live in gc-primitives.css.
 * ========================================================================== */

/* ---- Generic page wrapper -------------------------------------------- */
.gc-page {
    color: var(--mocha, #2a221b);
}
.gc-page section + section {
    margin-top: 3rem;
}
@media (max-width: 880px) {
    .gc-page section + section { margin-top: 2rem; }
}

/* ---- Two-column content rows ---------------------------------------- */
.gc-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}
.gc-row--aside-right {
    grid-template-columns: minmax(0, 1fr) 320px;
}
.gc-row--aside-left {
    grid-template-columns: 320px minmax(0, 1fr);
}
@media (max-width: 880px) {
    .gc-row, .gc-row--aside-right, .gc-row--aside-left { grid-template-columns: 1fr; }
}

/* ---- "Pillars" / value props grid ----------------------------------- */
.gc-pillar-card {
    background: #fffdf9;
    border: 1px solid #ead9c0;
    border-radius: 14px;
    padding: 1.25rem;
    height: 100%;
}
.gc-pillar-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FEF7E8;
    color: #7a5410;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.gc-pillar-card__title {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: var(--mocha, #2a221b);
}
.gc-pillar-card__copy {
    font-size: 0.88rem;
    color: #5a5048;
    line-height: 1.55;
    margin: 0;
}

/* ---- Stat row -------------------------------------------------------- */
.gc-statrow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.gc-stat {
    border: 1px solid #ead9c0;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    background: #fffdf9;
}
.gc-stat__value {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--mocha, #2a221b);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.gc-stat__label {
    font-size: 0.78rem;
    color: #6b6056;
    margin-top: 0.35rem;
}

/* ---- Pricing tile (used on Memberships) ----------------------------- */
.gc-tier {
    border: 1px solid #ead9c0;
    border-radius: 16px;
    padding: 1.5rem;
    background: #fffdf9;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.gc-tier--featured {
    border-color: var(--honey, #FCB240);
    background: linear-gradient(135deg, rgba(252, 178, 64, 0.10), transparent 60%);
}
.gc-tier__name {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mocha, #2a221b);
    margin: 0;
}
.gc-tier__price {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--mocha, #2a221b);
    line-height: 1;
    margin-top: 0.5rem;
}
.gc-tier__price-cadence {
    font-size: 0.85rem;
    color: #6b6056;
    font-weight: 500;
}
.gc-tier__copy {
    color: #5a5048;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0.75rem 0;
}
.gc-tier__features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem;
    display: grid;
    gap: 0.4rem;
}
.gc-tier__features li {
    font-size: 0.88rem;
    color: #2a221b;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.45;
}
.gc-tier__features li::before {
    content: "✓";
    color: #2f6f4d;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}
.gc-tier__cta { margin-top: auto; }

/* ---- Form card grid (used on Forms catalog) ------------------------- */
.gc-formcard {
    border: 1px solid #ead9c0;
    border-radius: 12px;
    padding: 1rem;
    background: #fffdf9;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}
.gc-formcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(82, 66, 53, 0.08);
    border-color: #d8c39d;
}
.gc-formcard__letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f5efe7;
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-weight: 600;
    color: var(--mocha, #2a221b);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}
.gc-formcard__title {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-weight: 600;
    color: var(--mocha, #2a221b);
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    line-height: 1.3;
}
.gc-formcard__meta {
    font-size: 0.78rem;
    color: #6b6056;
    line-height: 1.4;
}

/* ---- Event card grid (used on Events) ------------------------------- */
.gc-eventcard {
    border: 1px solid #ead9c0;
    border-radius: 14px;
    background: #fffdf9;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.gc-eventcard:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(82, 66, 53, 0.10);
    border-color: #d8c39d;
}
.gc-eventcard__cover {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #FEF7E8, #f0eaf7);
    border-bottom: 1px solid #ead9c0;
}
.gc-eventcard__body { padding: 1rem; }
.gc-eventcard__date {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.72rem;
    color: #7a5410;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.gc-eventcard__title {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-weight: 600;
    color: var(--mocha, #2a221b);
    margin: 0.35rem 0;
    font-size: 1rem;
    line-height: 1.3;
}
.gc-eventcard__location {
    font-size: 0.82rem;
    color: #6b6056;
}

/* ---- Voyage tile (used on Voyages index) ---------------------------- */
.gc-voyage {
    border: 1px solid #ead9c0;
    border-radius: 16px;
    background: #fffdf9;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
    color: inherit;
}
.gc-voyage:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(82, 66, 53, 0.10);
    border-color: #d8c39d;
}
.gc-voyage__location {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.72rem;
    color: #5a3a72;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.gc-voyage__title {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-weight: 600;
    color: var(--mocha, #2a221b);
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.25;
}
.gc-voyage__date {
    font-size: 0.85rem;
    color: #6b6056;
}
.gc-voyage__copy {
    font-size: 0.88rem;
    color: #5a5048;
    line-height: 1.55;
    margin: 0;
}

/* ---- Voyage detail hero (per-voyage page) --------------------------- */
.gc-voyage-hero {
    background: linear-gradient(135deg, rgba(252, 178, 64, 0.12), transparent 60%, rgba(156, 102, 170, 0.12));
    border: 1px solid #ead9c0;
    border-radius: 18px;
    padding: 2rem;
}
.gc-voyage-hero__date {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.78rem;
    color: #5a3a72;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.gc-voyage-hero__title {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-size: clamp(1.8rem, 1.5rem + 1.4vw, 2.5rem);
    color: var(--mocha, #2a221b);
    margin: 0.5rem 0;
    line-height: 1.1;
    font-weight: 600;
}
.gc-voyage-hero__location {
    color: #6b6056;
    font-size: 0.95rem;
}
.gc-voyage-hero__copy {
    color: #5a5048;
    margin-top: 1rem;
    max-width: 58ch;
    line-height: 1.6;
}

/* ---- CTA band -------------------------------------------------------- */
.gc-cta-band {
    background: linear-gradient(135deg, var(--mocha, #524235), #3a2e25);
    color: #fff;
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
}
.gc-cta-band__title {
    font-family: var(--font-display, "Inter Tight", system-ui, sans-serif);
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
    margin: 0 0 0.75rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}
.gc-cta-band__copy {
    max-width: 50ch;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.55;
}
.gc-cta-band .gc-btn--solid {
    background: var(--honey, #FCB240);
    color: #2a1c08;
    border-color: var(--honey, #FCB240);
}
.gc-cta-band .gc-btn--solid:hover {
    background: #f5a31f;
    color: #2a1c08;
}
.gc-cta-band .gc-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}
.gc-cta-band .gc-btn--outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
