/**
 * GC Smart Intake — Multi-step assessment widget
 */

/* ── Tokens ───────────────────────────────────────────── */
.gc-intake-widget {
    --gc-gold:        #b8953a;
    --gc-gold-light:  #d4af6a;
    --gc-gold-pale:   #ecddb8;
    --gc-gold-bg:     rgba(184,149,58,0.08);
    --gc-gold-border: rgba(184,149,58,0.25);
    --gc-cream:       #faf5ec;
    --gc-cream-mid:   #f5edd8;
    --gc-dark:        #1c1914;
    --gc-mid:         #3a3228;
    --gc-light:       #7a6e62;
    --gc-border:      rgba(28,25,20,0.10);
    --gc-radius:      4px;
    --gc-transition:  0.35s cubic-bezier(0.22,1,0.36,1);
}

/* ── Widget shell — full-width immersive card ─────────── */
.gc-intake-widget {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    color: var(--gc-dark);
    background: #ede8df;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 64px rgba(28,25,20,0.13), 0 2px 8px rgba(28,25,20,0.06);
}

/* ── App Header ───────────────────────────────────────── */
.gc-app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    background: #fff;
    border-bottom: 1px solid rgba(184,149,58,0.13);
    position: relative;
}
.gc-app-brand {
    display: flex;
    align-items: center;
    gap: 9px;
}
.gc-app-brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gc-gold);
    box-shadow: 0 0 8px rgba(184,149,58,0.55);
    animation: gcSimPulse 2.4s ease-in-out infinite;
}
.gc-app-brand-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gc-dark);
}

/* ── Progress — lives in header ──────────────────────── */
.gc-intake-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.gc-progress-dots {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}
.gc-progress-dot {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--gc-gold-border);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.64rem;
    font-weight: 700;
    color: var(--gc-light);
    cursor: default;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
                background 0.25s ease,
                border-color 0.25s ease,
                box-shadow 0.25s ease,
                color 0.25s ease;
    position: relative;
    z-index: 1;
}
/* Connector: right edge of each non-last dot */
.gc-progress-dot:not(:last-child) {
    margin-right: 28px;
}
.gc-progress-dot:not(:last-child)::after {
    content: '';
    position: absolute;
    left: calc(100% + 2px);
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 1.5px;
    background: var(--gc-gold-border);
    transition: background 0.3s ease;
    z-index: 0;
}
/* Done connector turns gold */
.gc-progress-dot.is-done::after {
    background: linear-gradient(90deg, var(--gc-gold-light), var(--gc-gold-border));
}

/* ── States ── */
.gc-progress-dot.is-active {
    background: var(--gc-gold);
    border-color: var(--gc-gold);
    color: #fff;
    box-shadow: 0 0 0 5px rgba(184,149,58,0.20), 0 4px 12px rgba(184,149,58,0.35);
    transform: scale(1.12);
}
/* Active ring pulse */
.gc-progress-dot.is-active::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(184,149,58,0.4);
    animation: gcDotRing 2s ease-out infinite;
}
@keyframes gcDotRing {
    0%   { transform: scale(1);    opacity: 0.7; }
    100% { transform: scale(1.55); opacity: 0; }
}

.gc-progress-dot.is-done {
    background: var(--gc-gold-pale);
    border-color: var(--gc-gold-light);
    color: var(--gc-gold);
}

/* ── Hover ── */
.gc-progress-dot:not(.is-active):hover {
    transform: scale(1.18);
    border-color: var(--gc-gold);
    color: var(--gc-gold);
    box-shadow: 0 0 0 3px rgba(184,149,58,0.15), 0 4px 14px rgba(184,149,58,0.2);
}

/* Thin fill bar below dots */
.gc-progress-track {
    height: 2px;
    width: 200px;
    background: var(--gc-gold-border);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 6px;
}
.gc-progress-fill {
    height: 100%;
    width: 25%;
    background: var(--gc-gold);
    border-radius: 2px;
    transition: width var(--gc-transition);
}

/* ── Step counter (top right) ─────────────────────────── */
.gc-step-counter {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gc-light);
    min-width: 80px;
    text-align: right;
}

/* ── Steps ────────────────────────────────────────────── */
.gc-intake-step {
    display: none;
    animation: gcStepIn var(--gc-transition) both;
}
.gc-intake-step.is-active {
    display: block;
}
/* Step 0 is pre-rendered as active — no entry animation on page load */
.gc-intake-step.gc-step-init {
    animation: none;
}
@keyframes gcStepIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Step header ──────────────────────────────────────── */
.gc-overline {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.30em;
    text-transform: uppercase;
    color: var(--gc-gold);
    margin: 0 0 10px;
}
.gc-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--gc-dark);
    line-height: 1.12;
    margin: 0 0 12px;
}
.gc-sub,
.gc-step-title ~ .gc-sub {
    font-size: 0.85rem;
    color: var(--gc-light);
    line-height: 1.65;
    margin: 0;
}
.gc-step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--gc-dark);
    margin: 0 0 4px;
    line-height: 1.15;
}
.gc-step-sub {
    font-size: 0.78rem;
    color: var(--gc-light);
    margin: 4px 0 0;
}
/* Step head gets more breathing room inside the card */
.gc-step-head {
    margin-bottom: 36px;
}

/* ── Fields ───────────────────────────────────────────── */
.gc-fields {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
}
.gc-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 480px) {
    .gc-field-row { grid-template-columns: 1fr; }
}
.gc-field {}
.gc-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gc-mid);
    margin-bottom: 10px;
}

/* ── Text inputs ──────────────────────────────────────── */
.gc-input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1px solid var(--gc-gold-border);
    border-radius: var(--gc-radius);
    background: var(--gc-cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: var(--gc-dark);
    outline: none;
    transition: border-color 0.2s;
}
.gc-input::placeholder { color: var(--gc-light); }
.gc-input:focus {
    border-color: var(--gc-gold);
    box-shadow: 0 0 0 3px rgba(184,149,58,0.14), 0 2px 8px rgba(184,149,58,0.10);
    outline: none;
}

/* ── Chips ────────────────────────────────────────────── */
.gc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.gc-chip {
    padding: 9px 16px;
    border: 1px solid var(--gc-gold-border);
    border-radius: 30px;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--gc-mid);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
                background 0.18s ease,
                border-color 0.18s ease,
                color 0.18s ease,
                box-shadow 0.18s ease;
    line-height: 1;
}
.gc-chip:hover {
    border-color: var(--gc-gold);
    color: var(--gc-dark);
    background: var(--gc-gold-bg);
    transform: scale(1.06);
}
.gc-chip.is-selected {
    background: var(--gc-gold);
    border-color: var(--gc-gold);
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 3px 12px rgba(184,149,58,0.30);
}
.gc-chip:active { transform: scale(0.96); }

/* ── Scale rows ───────────────────────────────────────── */
.gc-scale-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.gc-scale-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gc-mid);
    width: 110px;
    flex-shrink: 0;
}
.gc-scale-track {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.gc-scale-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--gc-gold-border);
    border-radius: 50%;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gc-mid);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gc-scale-btn:hover {
    border-color: var(--gc-gold);
    color: var(--gc-gold);
}
.gc-scale-btn.is-selected {
    background: var(--gc-gold);
    border-color: var(--gc-gold);
    color: #fff;
}
@media (max-width: 520px) {
    .gc-scale-row { flex-direction: column; align-items: flex-start; }
    .gc-scale-label { width: auto; }
    .gc-scale-btn { width: 30px; height: 30px; font-size: 0.62rem; }
}

/* ── Navigation ───────────────────────────────────────── */
.gc-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 8px;
}
.gc-nav--right { justify-content: flex-end; }

.gc-btn-next,
.gc-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    background: var(--gc-gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease, transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(184,149,58,0.30);
}
/* Shimmer sweep on hover */
.gc-btn-next::before,
.gc-btn-submit::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.45s ease;
}
.gc-btn-next:hover::before,
.gc-btn-submit:hover::before { left: 160%; }
.gc-btn-next:hover,
.gc-btn-submit:hover {
    background: #9a7c2e;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(184,149,58,0.40);
}
.gc-btn-next:active,
.gc-btn-submit:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 8px rgba(184,149,58,0.25);
}
.gc-btn-arrow {
    font-style: normal;
    display: inline-block;
    transition: transform 0.2s ease;
}
.gc-btn-next:hover .gc-btn-arrow { transform: translateX(4px); }
.gc-btn-star {
    font-style: normal;
    display: inline-block;
    transition: transform 0.35s ease;
}
.gc-btn-submit:hover .gc-btn-star { transform: rotate(72deg) scale(1.2); }

.gc-btn-back {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.70rem;
    font-weight: 600;
    color: var(--gc-light);
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
}
/* Underline slide effect */
.gc-btn-back::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 0; height: 1px;
    background: var(--gc-gold);
    transition: width 0.25s ease;
}
.gc-btn-back:hover {
    color: var(--gc-dark);
    transform: translateX(-3px);
}
.gc-btn-back:hover::after { width: 100%; }

/* ── Loading ──────────────────────────────────────────── */
.gc-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    gap: 20px;
}
.gc-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gc-gold-border);
    border-top-color: var(--gc-gold);
    border-radius: 50%;
    animation: gcSpin 0.9s linear infinite;
}
@keyframes gcSpin { to { transform: rotate(360deg); } }
.gc-loading-text {
    font-size: 0.75rem;
    color: var(--gc-light);
    letter-spacing: 0.06em;
    margin: 0;
}

/* ── Recommendation card ──────────────────────────────── */
.gc-rec-card {
    border: 1px solid var(--gc-gold-border);
    border-radius: var(--gc-radius);
    background: linear-gradient(135deg, var(--gc-cream) 0%, #fff9f0 100%);
    overflow: hidden;
    animation: gcStepIn var(--gc-transition) both;
}
.gc-rec-band-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: var(--gc-gold-bg);
    border-bottom: 1px solid var(--gc-gold-border);
}
.gc-rec-band-label {
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gc-gold);
}
.gc-rec-band-score {
    font-size: 0.58rem;
    color: var(--gc-light);
    letter-spacing: 0.08em;
}

/* Band colour accents */
.gc-rec-band-high    .gc-rec-band-bar { background: rgba(122,110,98,0.08); border-color: rgba(122,110,98,0.2); }
.gc-rec-band-high    .gc-rec-band-label { color: var(--gc-mid); }
.gc-rec-band-light   .gc-rec-band-bar { background: rgba(58,50,40,0.06); }

.gc-rec-body {
    padding: 24px 24px 20px;
}
.gc-rec-overline {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gc-gold);
    margin: 0 0 8px;
}
.gc-rec-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--gc-dark);
    margin: 0 0 12px;
    line-height: 1.1;
}
.gc-rec-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.gc-rec-meta-item {
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--gc-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.gc-rec-meta-sep {
    color: var(--gc-gold-border);
    font-size: 0.6rem;
}
.gc-rec-price {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gc-gold);
    margin-left: auto;
}

/* Why section */
.gc-rec-why {
    border-top: 1px solid var(--gc-gold-border);
    padding-top: 16px;
    margin-bottom: 16px;
}
.gc-rec-why-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gc-light);
    margin: 0 0 6px;
}
.gc-rec-why-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: var(--gc-mid);
    line-height: 1.65;
    margin: 0;
}

/* Add-ons */
.gc-rec-addons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.gc-rec-addons-label {
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gc-light);
    margin-right: 4px;
}
.gc-rec-addon {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--gc-dark);
    background: var(--gc-gold-bg);
    border: 1px solid var(--gc-gold-border);
    border-radius: 2px;
    padding: 3px 9px;
}

/* Secondary */
.gc-rec-secondary {
    font-size: 0.68rem;
    color: var(--gc-light);
    font-style: italic;
    margin: 0 0 16px;
}
.gc-rec-secondary strong { font-style: normal; color: var(--gc-mid); }

/* Actions */
.gc-rec-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.gc-rec-book-btn {
    padding: 14px 24px;
    background: var(--gc-gold);
    color: #fff;
    border: none;
    border-radius: var(--gc-radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-align: center;
}
.gc-rec-book-btn:hover { background: var(--gc-gold-light); transform: translateY(-1px); }
.gc-rec-book-btn:disabled {
    background: var(--gc-gold-border);
    cursor: default;
    transform: none;
}
.gc-rec-browse-btn {
    background: none;
    border: 1px solid var(--gc-gold-border);
    border-radius: var(--gc-radius);
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gc-mid);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.gc-rec-browse-btn:hover { border-color: var(--gc-gold); color: var(--gc-dark); }

/* ── LatePoint button resets — scoped to our widget ────────────────
   Both .gc-rec-book-wrap (specific service, 1st button) and
   .latepoint-book-button-wrapper (general button, 2nd) live inside
   .gc-rec-actions.  Strip WP block defaults; apply our own styles.
────────────────────────────────────────────────────────────────── */

/* Strip the WP block wrapper */
.gc-rec-actions .latepoint-book-button-wrapper,
.gc-rec-actions .wp-block-button {
    display: block;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

/* ── 1st button: specific service — solid gold (matches .gc-rec-book-btn) ── */
.gc-rec-book-wrap .latepoint-book-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 24px;
    background: var(--gc-gold) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--gc-radius) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    box-shadow: none !important;
    clip-path: none !important;
}
.gc-rec-book-wrap .latepoint-book-button:hover {
    background: #9a7c2e !important;
    color: #fff !important;
    transform: translateY(-1px);
    opacity: 1 !important;
}

/* ── 2nd button: general / explore — outlined (matches .gc-rec-browse-btn) ── */
.gc-rec-actions .latepoint-book-button-wrapper .latepoint-book-button,
.gc-rec-actions .wp-block-button .latepoint-book-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 24px;
    background: transparent !important;
    color: var(--gc-mid) !important;
    border: 1px solid var(--gc-gold-border) !important;
    border-radius: var(--gc-radius) !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    box-shadow: none !important;
    clip-path: none !important;
}
.gc-rec-actions .latepoint-book-button-wrapper .latepoint-book-button:hover,
.gc-rec-actions .wp-block-button .latepoint-book-button:hover {
    border-color: var(--gc-gold) !important;
    color: var(--gc-dark) !important;
    background: transparent !important;
    opacity: 1 !important;
}

/* Next visit */
.gc-rec-next-visit {
    font-size: 0.64rem;
    color: var(--gc-light);
    border-top: 1px solid var(--gc-gold-border);
    padding-top: 14px;
    margin: 0;
}

/* ── Service Browser ──────────────────────────────────── */
.gc-browser {
    margin-top: 24px;
    animation: gcStepIn var(--gc-transition) both;
}
.gc-browser-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gc-gold-border);
}
.gc-browser-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gc-dark);
    margin: 0 0 4px;
}
.gc-browser-sub {
    font-size: 0.70rem;
    color: var(--gc-light);
    margin: 0;
}

/* Collection accordion */
.gc-browser-collection {
    border: 1px solid var(--gc-gold-border);
    border-radius: var(--gc-radius);
    overflow: hidden;
    margin-bottom: 10px;
}
.gc-browser-coll-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--gc-cream);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gc-dark);
    text-align: left;
    transition: background 0.2s;
}
.gc-browser-coll-toggle:hover { background: var(--gc-cream-mid); }
.gc-browser-coll-toggle.is-open { background: var(--gc-gold-bg); color: var(--gc-gold); }
.gc-browser-coll-arrow {
    font-size: 0.65rem;
    transition: transform 0.25s;
    color: var(--gc-gold);
}
.gc-browser-coll-toggle.is-open .gc-browser-coll-arrow { transform: rotate(180deg); }

.gc-browser-coll-body {
    display: none;
    border-top: 1px solid var(--gc-gold-border);
}
.gc-browser-coll-body.is-open { display: block; }

/* Service rows */
.gc-browser-type-label {
    padding: 8px 18px 4px;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: var(--gc-light);
    background: rgba(250,245,236,0.6);
    border-bottom: 1px solid var(--gc-gold-border);
}
.gc-browser-service {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 18px;
    border-bottom: 1px solid var(--gc-gold-border);
    transition: background 0.15s;
}
.gc-browser-service:last-child { border-bottom: none; }
.gc-browser-service:hover { background: var(--gc-gold-bg); }
.gc-browser-svc-info {
    flex: 1;
    min-width: 0;
}
.gc-browser-svc-name {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gc-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gc-browser-svc-dur {
    font-size: 0.60rem;
    color: var(--gc-light);
}
.gc-browser-svc-price {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gc-gold);
    white-space: nowrap;
    flex-shrink: 0;
}
.gc-browser-book-btn {
    flex-shrink: 0;
    padding: 6px 14px;
    background: none;
    border: 1px solid var(--gc-gold);
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gc-gold);
    cursor: pointer;
    transition: all 0.2s;
}
.gc-browser-book-btn:hover {
    background: var(--gc-gold);
    color: #fff;
}

/* ── Service group (multiple duration options) ────── */
.gc-browser-svc-group {
    border-bottom: 1px solid var(--gc-gold-border);
}
.gc-browser-svc-group:last-child { border-bottom: none; }
.gc-browser-svc-group-label {
    padding: 8px 18px 4px;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gc-dark);
    background: rgba(250,245,236,0.5);
}
.gc-browser-service--opt {
    padding-left: 28px;
    border-bottom: none;
    border-top: 1px solid rgba(184,149,58,0.12);
}
.gc-browser-service--opt:first-of-type { border-top: none; }

/* ── Recommendation option name subtitle ─────────── */
.gc-rec-opt-name {
    font-size: 0.78rem;
    color: var(--gc-mid);
    font-style: italic;
    margin: -6px 0 12px;
}

/* ══════════════════════════════════════════════════════════
   SPLIT LAYOUT
══════════════════════════════════════════════════════════ */
.gc-intake-widget {
    max-width: 1120px;
}
.gc-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    align-items: start;
    padding: 28px 32px 36px;
    background: #ede8df;
}
.gc-col-form {
    min-width: 0;
}
.gc-col-sim {
    position: sticky;
    top: 28px;
}

/* ── Form card ────────────────────────────────────────── */
.gc-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 44px 52px 48px;
    box-shadow: 0 2px 20px rgba(28,25,20,0.07);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    animation: gcCardIn 0.5s cubic-bezier(0.22,1,0.36,1) both;
    position: relative;
    overflow: hidden;
}
/* Subtle shimmer line that sweeps across the top of the card on load */
.gc-form-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: auto;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(184,149,58,0.5), transparent);
    animation: gcCardShimmer 1.8s ease 0.3s both;
    border-radius: 16px 16px 0 0;
}
@keyframes gcCardIn {
    from { opacity: 0; transform: translateY(18px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes gcCardShimmer {
    from { left: -60%; }
    to   { left: 160%; }
}

@media (max-width: 960px) {
    .gc-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .gc-col-sim {
        position: static;
        order: 2;
    }
    .gc-form-card {
        padding: 32px 28px;
        min-height: auto;
    }
}
@media (max-width: 520px) {
    .gc-app-header { padding: 14px 18px; }
    .gc-progress-track { display: none; }
    .gc-form-card { padding: 24px 18px; }
    .gc-layout { padding: 14px; gap: 14px; }
}

/* ══════════════════════════════════════════════════════════
   SIMULATOR PANEL
══════════════════════════════════════════════════════════ */
.gc-sim {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(28,25,20,0.07);
}
.gc-sim::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gc-gold-pale), var(--gc-gold), var(--gc-gold-light), var(--gc-gold), var(--gc-gold-pale));
    border-radius: 16px 16px 0 0;
}

/* ── Live status row ─────────────────────────────────── */
.gc-sim-status-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.gc-sim-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff8c35;
    flex-shrink: 0;
    box-shadow: 0 0 6px 2px rgba(255,130,40,0.7);
    animation: gcSimPulse 2.2s ease-in-out infinite;
}
@keyframes gcSimPulse {
    0%, 100% { opacity: 1;   transform: scale(1);
                box-shadow: 0 0 6px 2px rgba(255,130,40,0.7); }
    50%       { opacity: 0.6; transform: scale(0.7);
                box-shadow: 0 0 3px 1px rgba(255,130,40,0.3); }
}
.gc-sim-status-text {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gc-light);
}

/* ── Section labels — dark pill tabs (like the reference) */
.gc-sim-section-label {
    display: inline-flex;
    align-items: center;
    background: #1c1914;
    color: #ecddb8;
    border-radius: 30px;
    padding: 5px 13px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 12px;
    box-shadow: 0 2px 8px rgba(28,25,20,0.18);
}

/* ── Collection forming ───────────────────────────────── */
.gc-sim-collection-wrap {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gc-gold-border);
    margin-bottom: 18px;
}
.gc-sim-collection-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gc-dark);
    margin: 0 0 5px;
    line-height: 1.1;
    transition: filter 0.7s ease, opacity 0.5s ease;
    letter-spacing: 0.01em;
}
.gc-sim-collection-name.is-blurred-3 { filter: blur(9px);  opacity: 0.25; }
.gc-sim-collection-name.is-blurred-2 { filter: blur(5px);  opacity: 0.50; }
.gc-sim-collection-name.is-blurred-1 { filter: blur(2px);  opacity: 0.75; }

.gc-sim-collection-sub {
    font-size: 0.76rem;
    color: var(--gc-light);
    margin: 0 0 10px;
    min-height: 1.2em;
}
.gc-sim-band-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 13px;
    border-radius: 30px;
    background: #1c1914;
    border: none;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ecddb8;
    transition: opacity 0.4s, background 0.35s;
    box-shadow: 0 2px 8px rgba(28,25,20,0.18);
}
.gc-sim-band-badge.is-light    { background: #2e2820; color: #c8a96a; }
.gc-sim-band-badge.is-moderate { background: #1c1914; color: #d4af6a;
    box-shadow: 0 0 10px rgba(212,175,106,0.3); }
.gc-sim-band-badge.is-elevated { background: #1c1408; color: #ffaa40;
    box-shadow: 0 0 14px rgba(255,160,50,0.45); }
.gc-sim-band-badge.is-high     { background: #200e04; color: #ff7030;
    box-shadow: 0 0 16px rgba(255,100,30,0.55); }

/* ── 7 Pillar bars — 2-column grid ───────────────────── */
.gc-sim-pillars-wrap {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--gc-gold-border);
    margin-bottom: 14px;
}
.gc-sim-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}
.gc-sim-pillar:last-child { grid-column: 1 / -1; }

/* ── Each cell — light card with neon bar ─────────────── */
.gc-sim-pillar {
    background: #faf7f2;
    border: 1px solid rgba(184,149,58,0.15);
    border-radius: 8px;
    padding: 9px 11px 10px;
    position: relative;
    overflow: visible; /* let glow bleed out */
}
.gc-sim-pillar::before { content: none; }

.gc-sim-pillar-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 7px;
}
.gc-sim-pillar-label {
    font-size: 0.50rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gc-light);
}
.gc-sim-pillar-val {
    font-size: 0.92rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--gc-dark);
    min-width: 2em;
    text-align: right;
    line-height: 1;
    transition: color 0.4s ease;
}

/* ── Bar track ── */
.gc-sim-pillar-track {
    height: 10px;
    background: rgba(28,25,20,0.06);
    border-radius: 99px;
    overflow: visible;
    position: relative;
}
.gc-sim-pillar-track::after { content: none; }

/* ── Bar fill — neon glow ── */
.gc-sim-pillar-fill {
    height: 100%;
    width: 0;
    border-radius: 99px;
    transition: width 0.65s cubic-bezier(0.22,1,0.36,1),
                background 0.45s ease,
                box-shadow 0.45s ease;
    position: relative;
}
/* Glow dot at the leading edge */
.gc-sim-pillar-fill::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gc-sim-pillar-fill[style*="width: 0"]:after,
.gc-sim-pillar-fill[style*="width:0"]:after { opacity: 0; }

.gc-sim-pillar-fill.is-low {
    background: linear-gradient(90deg, #d4c090, #c8a850);
    box-shadow: none;
}
.gc-sim-pillar-fill.is-low::after {
    background: #c8a850;
    box-shadow: 0 0 6px 3px rgba(200,168,80,0.5);
    opacity: 1;
}

.gc-sim-pillar-fill.is-moderate {
    background: linear-gradient(90deg, #e8aa40, #f0c040);
    box-shadow: 0 0 8px 2px rgba(240,180,50,0.4),
                0 0 20px 4px rgba(240,160,30,0.2);
}
.gc-sim-pillar-fill.is-moderate::after {
    background: #f0c040;
    box-shadow: 0 0 8px 4px rgba(240,180,50,0.7);
    opacity: 1;
}

.gc-sim-pillar-fill.is-elevated {
    background: linear-gradient(90deg, #e88020, #ff9f35);
    box-shadow: 0 0 10px 3px rgba(255,150,40,0.55),
                0 0 24px 6px rgba(255,120,20,0.28);
}
.gc-sim-pillar-fill.is-elevated::after {
    background: #ff9f35;
    box-shadow: 0 0 10px 5px rgba(255,150,40,0.8);
    opacity: 1;
}
/* Value readout glows to match */
.gc-sim-pillar:has(.is-elevated) .gc-sim-pillar-val { color: #d4680a; }

.gc-sim-pillar-fill.is-high {
    background: linear-gradient(90deg, #d44010, #ff5520);
    box-shadow: 0 0 12px 4px rgba(255,80,30,0.65),
                0 0 28px 8px rgba(255,60,10,0.30);
}
.gc-sim-pillar-fill.is-high::after {
    background: #ff5520;
    box-shadow: 0 0 12px 6px rgba(255,80,30,0.9);
    opacity: 1;
}
.gc-sim-pillar:has(.is-high) .gc-sim-pillar-val { color: #c03010; }

/* ── Pattern detected ─────────────────────────────────── */
.gc-sim-pattern-wrap {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gc-gold-border);
    margin-bottom: 16px;
}
.gc-sim-pattern-text {
    font-size: 0.80rem;
    color: var(--gc-mid);
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}

/* ── Completion hint bar ─────────────────────────────── */
.gc-sim-hint {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.gc-sim-hint-track {
    height: 3px;
    background: rgba(184,149,58,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.gc-sim-hint-fill {
    height: 100%;
    width: 0;
    background: var(--gc-gold);
    border-radius: 2px;
    transition: width 0.45s ease;
}
.gc-sim-hint-label {
    font-size: 0.65rem;
    color: var(--gc-light);
    letter-spacing: 0.07em;
}

/* ── Editor overrides ─────────────────────────────────── */
.elementor-editor-active .gc-sim-live-dot {
    animation: none;
    opacity: 1;
}
.elementor-editor-active .gc-sim-collection-name {
    filter: none !important;
    opacity: 1 !important;
}

/* ══════════════════════════════════════════════════════════
   BODY MAP
══════════════════════════════════════════════════════════ */
.gc-body-map-wrap {
    background:    #0e0c09;
    border-radius: 5px;
    padding:       14px 10px 10px;
    display:       flex;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid rgba(184,149,58,0.10);
}

/* Container holds image + SVG stacked */
.gc-body-figure {
    position:  relative;
    width:     100%;
    max-width: 180px;
    line-height: 0;
}
.gc-body-img {
    width:   100%;
    height:  auto;
    display: block;
    /* knock out any white background on the PNG */
    mix-blend-mode: lighten;
}
.gc-body-svg {
    position: absolute;
    top:  0;
    left: 0;
    width:  100%;
    height: 100%;
    overflow: visible;
}

/* ── Body regions — base (invisible, ready to light up) */
.gc-body-region {
    fill:         rgba(184,149,58,0.0);
    stroke:       rgba(184,149,58,0.0);
    stroke-width: 0;
    transition:   fill 0.5s ease, stroke 0.5s ease, filter 0.5s ease;
}

/* ── Activation levels ───────────────────────────────── */

/* Level 1 — mild (barely visible warm tint) */
.gc-body-region.is-lvl-1 {
    fill:   rgba(212,175,106,0.22);
    stroke: rgba(212,175,106,0.0);
}

/* Level 2 — moderate (clear gold highlight) */
.gc-body-region.is-lvl-2 {
    fill:   rgba(212,158,55,0.38);
    stroke: rgba(212,158,55,0.0);
    filter: drop-shadow(0 0 6px rgba(212,158,55,0.50));
}

/* Level 3 — elevated (amber, visible heat) */
.gc-body-region.is-lvl-3 {
    fill:   rgba(210,125,30,0.52);
    stroke: rgba(210,125,30,0.0);
    filter: drop-shadow(0 0 10px rgba(210,125,30,0.60));
}

/* Level 4 — critical (deep amber, pulsing) */
.gc-body-region.is-lvl-4 {
    fill:      rgba(215,90,20,0.62);
    stroke:    rgba(215,90,20,0.0);
    filter:    drop-shadow(0 0 16px rgba(215,90,20,0.70));
    animation: gcRegionPulse 2.2s ease-in-out infinite;
}

@keyframes gcRegionPulse {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(215,90,20,0.60)); }
    50%       { filter: drop-shadow(0 0 24px rgba(215,90,20,0.85)); }
}

/* Pregnancy — soft blue glow over the torso region */
.gc-body-region.is-prenatal {
    fill:      rgba(80,170,195,0.42);
    stroke:    rgba(80,170,195,0.0);
    filter:    drop-shadow(0 0 10px rgba(80,170,195,0.55));
    animation: gcPrenatalPulse 3s ease-in-out infinite;
}
@keyframes gcPrenatalPulse {
    0%, 100% { filter: drop-shadow(0 0 7px rgba(80,170,195,0.45)); }
    50%       { filter: drop-shadow(0 0 16px rgba(80,170,195,0.70)); }
}

/* ── Editor fix ─────────────────────────────────────── */
.elementor-editor-active .gc-body-region {
    animation: none !important;
}

/* ── AI response container ─────────────────────────── */
.gc-ai-response {
    min-height: 2.4rem;
    display: flex;
    align-items: center;
}

/* Loading state — three animated dots */
.gc-ai-loading {
    gap: 6px;
}

.gc-ai-dot {
    display: inline-block;
    width:  7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gc-gold, #b8953a);
    opacity: 0.3;
    animation: gcAIDot 1.4s ease-in-out infinite;
}
.gc-ai-dot:nth-child(2) { animation-delay: 0.2s; }
.gc-ai-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes gcAIDot {
    0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
    40%           { opacity: 1;   transform: scale(1.15); }
}

/* Settled state — text fades in */
.gc-ai-response:not(.gc-ai-loading) {
    animation: gcAIFadeIn 0.6s ease both;
}
@keyframes gcAIFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Back button on step 4 */
.gc-nav--back-only {
    margin-top: 1.5rem;
    justify-content: flex-start;
}

/* ── Chat orb — round pulsing gold button near title ── */
.gc-rec-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.3rem;
}
.gc-rec-title-col {
    flex: 1;
    min-width: 0;
}
/* Hide old bottom chat row — orb is now in title row */
.gc-rec-chat-row { display: none; }

.gc-chat-orb {
    position: relative;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #b8953a;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.2rem;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 18px rgba(184,149,58,0.45);
}
.gc-chat-orb:hover {
    background: #9a7c2e;
    transform: scale(1.08);
}
/* Pulsing ring */
.gc-chat-orb::before,
.gc-chat-orb::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(184,149,58,0.6);
    animation: gcOrbPulse 2.4s ease-out infinite;
}
.gc-chat-orb::after {
    animation-delay: 1.2s;
}
@keyframes gcOrbPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.9); opacity: 0; }
}
/* Tooltip on hover */
.gc-chat-orb-tip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #1c1914;
    color: #ecddb8;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 5px 9px;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}
.gc-chat-orb:hover .gc-chat-orb-tip { opacity: 1; }

/* ── Chat panel ────────────────────────────────────── */
.gc-chat-panel {
    position: fixed;
    bottom: 0;
    right: 1.5rem;
    width: 360px;
    max-height: 520px;
    background: #faf5ec;
    border: 1px solid rgba(184,149,58,0.35);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -8px 40px rgba(28,25,20,0.14);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32,0,0.15,1);
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
}
.gc-chat-panel.is-open { transform: translateY(0); }

.gc-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid rgba(184,149,58,0.2);
    background: #fff;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}
.gc-chat-header-info { display: flex; flex-direction: column; gap: 2px; }
.gc-chat-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1c1914;
}
.gc-chat-subtitle {
    font-size: 0.62rem;
    color: #7a6e62;
    letter-spacing: 0.04em;
}
.gc-chat-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: #7a6e62;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.2rem;
    transition: color 0.15s;
}
.gc-chat-close:hover { color: #1c1914; }

.gc-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    scroll-behavior: smooth;
}

.gc-chat-msg {
    max-width: 88%;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.78rem;
    line-height: 1.55;
    color: #1c1914;
}
.gc-chat-msg--user {
    background: rgba(184,149,58,0.12);
    border: 1px solid rgba(184,149,58,0.25);
    align-self: flex-end;
    border-radius: 10px 10px 2px 10px;
}
.gc-chat-msg--ai {
    background: #fff;
    border: 1px solid rgba(28,25,20,0.08);
    align-self: flex-start;
    border-radius: 10px 10px 10px 2px;
}
.gc-chat-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.55rem 0.85rem;
    min-height: 2.2rem;
}

.gc-chat-input-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(184,149,58,0.18);
    background: #fff;
    flex-shrink: 0;
}
.gc-chat-input {
    flex: 1;
    border: 1px solid rgba(184,149,58,0.3);
    border-radius: 6px;
    padding: 0.5rem 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.76rem;
    background: #faf5ec;
    color: #1c1914;
    outline: none;
    transition: border-color 0.2s;
}
.gc-chat-input:focus { border-color: #b8953a; }
.gc-chat-send {
    background: #b8953a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.gc-chat-send:hover { background: #9a7c2e; }

@media (max-width: 480px) {
    .gc-chat-panel {
        right: 0;
        width: 100%;
        border-radius: 12px 12px 0 0;
        max-height: 70vh;
    }
}

/* ══════════════════════════════════════════════════════
   CHAT — two-column layout
══════════════════════════════════════════════════════ */

/* ── Panel — wider for two-column ── */
.gc-chat-panel {
    width: 620px;
    max-height: 560px;
    display: flex;
    flex-direction: column;
}

/* ── Two-column body ── */
.gc-chat-body {
    display: flex;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

/* ── LEFT: suggestions sidebar ── */
.gc-chat-sidebar {
    width: 190px;
    flex-shrink: 0;
    border-right: 1px solid rgba(184,149,58,0.18);
    padding: 1rem 0.85rem;
    background: rgba(184,149,58,0.04);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.gc-chat-sidebar-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a6e62;
    margin-bottom: 0.3rem;
    flex-shrink: 0;
}
.gc-chat-chip {
    display: block;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid rgba(184,149,58,0.25);
    border-radius: 6px;
    padding: 0.5rem 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.64rem;
    color: #3a3228;
    line-height: 1.45;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}
.gc-chat-chip:hover { background: rgba(184,149,58,0.1); border-color: #b8953a; }
.gc-chat-chip.is-used { opacity: 0.42; cursor: default; pointer-events: none; }

/* ── RIGHT: conversation ── */
.gc-chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
}
.gc-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    scroll-behavior: smooth;
}

/* ── Mobile ── */
@media (max-width: 680px) {
    .gc-chat-panel { width: 100%; right: 0; max-height: 80vh; }
    .gc-chat-body  { flex-direction: column; }
    .gc-chat-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid rgba(184,149,58,0.18);
        padding: 0.6rem;
        gap: 0.35rem;
    }
    .gc-chat-sidebar-label { width: 100%; }
    .gc-chat-chip { width: auto; font-size: 0.6rem; padding: 0.35rem 0.55rem; }
}

/* ══════════════════════════════════════════════════════
   CHAT — inline (inside gc-rec-body, not a body overlay)
══════════════════════════════════════════════════════ */
.gc-chat-inline {
    display: none;
    margin-top: 1.2rem;
    border: 1px solid rgba(184,149,58,0.28);
    border-radius: 10px;
    background: #faf5ec;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}
.gc-chat-inline.is-open { display: flex; flex-direction: column; }

/* Bar */
.gc-chat-inline-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(184,149,58,0.2);
    background: #fff;
    flex-shrink: 0;
}
.gc-chat-inline-title {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1c1914;
}

/* Body = two-column (inherits .gc-chat-body, .gc-chat-sidebar, .gc-chat-main) */
.gc-chat-inline .gc-chat-body {
    height: 340px;
    min-height: 0;
}

/* Mobile: collapse sidebar to row of chips */
@media (max-width: 600px) {
    .gc-chat-inline .gc-chat-body { height: auto; flex-direction: column; }
    .gc-chat-inline .gc-chat-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid rgba(184,149,58,0.18);
        padding: 0.6rem;
        gap: 0.35rem;
    }
    .gc-chat-inline .gc-chat-sidebar-label { width: 100%; }
    .gc-chat-inline .gc-chat-chip { width: auto; font-size: 0.6rem; padding: 0.35rem 0.55rem; }
    .gc-chat-inline .gc-chat-messages { max-height: 220px; }
}

/* ══════════════════════════════════════════════════════════
   TYPING REVEAL — ChatGPT-style greeting + AI response
══════════════════════════════════════════════════════════ */

/* ── Outer reveal panel ───────────────────────────────── */
.gc-rec-reveal {
    padding: 36px 44px 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(28,25,20,0.07);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: gcCardIn 0.45s cubic-bezier(0.22,1,0.36,1) both;
}
/* Top gold accent line */
.gc-rec-reveal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gc-gold-pale), var(--gc-gold), var(--gc-gold-light), var(--gc-gold), var(--gc-gold-pale));
    border-radius: 16px 16px 0 0;
}

/* ── Concierge label ──────────────────────────────────── */
.gc-rec-reveal::after {
    content: 'Grand Concierge';
    position: absolute;
    top: 18px; right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gc-gold);
    opacity: 0.7;
}

/* ── Greeting line ────────────────────────────────────── */
.gc-reveal-greeting {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--gc-dark);
    line-height: 1.25;
    margin: 0 0 20px;
    letter-spacing: 0.01em;
    min-height: 1.9em;
}

/* ── AI response body ─────────────────────────────────── */
.gc-reveal-ai {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--gc-mid);
    line-height: 1.75;
    margin: 0;
    min-height: 1.5em;
    letter-spacing: 0.01em;
}

/* ── Blinking cursor ──────────────────────────────────── */
.gc-type-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: var(--gc-gold);
    border-radius: 1px;
    vertical-align: middle;
    margin-left: 1px;
    animation: gcCursorBlink 0.9s step-end infinite;
}
@keyframes gcCursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Card reveal wrapper ──────────────────────────────── */
.gc-rec-card-reveal {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
                transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.gc-rec-card-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 960px) {
    .gc-rec-reveal { padding: 28px 28px 20px; }
    .gc-reveal-greeting { font-size: 1.25rem; }
}
@media (max-width: 520px) {
    .gc-rec-reveal { padding: 22px 18px 18px; }
    .gc-reveal-greeting { font-size: 1.1rem; }
    .gc-reveal-ai { font-size: 0.82rem; }
}

/* ══════════════════════════════════════════════════════════
   DOWNLOAD PDF BAR
══════════════════════════════════════════════════════════ */
.gc-pdf-bar {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s cubic-bezier(0.22,1,0.36,1) 0.2s;
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
}
.gc-pdf-bar.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.gc-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 32px;
    background: transparent;
    border: 1.5px solid var(--gc-gold);
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--gc-gold);
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease,
                box-shadow 0.22s ease;
}
.gc-pdf-btn:hover {
    background: var(--gc-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,149,58,0.28);
}
.gc-pdf-btn:active { transform: translateY(0); }
.gc-pdf-icon {
    font-size: 1rem;
    line-height: 1;
}
.gc-pdf-spin {
    display: inline-block;
    animation: gcPdfSpin 0.9s linear infinite;
}
@keyframes gcPdfSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ── Invite sentence (typed after AI response) ─────── */
.gc-reveal-invite {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gc-gold);
    line-height: 1.6;
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--gc-gold-border);
    letter-spacing: 0.01em;
}
