/* ============================================================
   My Studio Widgets — GC Experience (Hero split)
   ============================================================ */

.gc-experience {
    --gc-exp-gold:        #b8953a;
    --gc-exp-gold-light:  #d4af6a;
    --gc-exp-gold-pale:   rgba(184,149,58,0.10);
    --gc-exp-bg:          #faf5ec;
    --gc-exp-text:        #1c1914;
    --gc-exp-mid:         #3a3228;
    --gc-exp-muted:       #7a6e62;
    --gc-exp-border:      rgba(184,149,58,0.22);
    --gc-exp-dark:        #1c1914;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--gc-exp-text);
    background: var(--gc-exp-bg);
    overflow: hidden;
}

.gc-experience *,
.gc-experience *::before,
.gc-experience *::after { box-sizing: border-box; margin: 0; padding: 0; }

.gc-exp-overline {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gc-exp-gold);
    margin-bottom: 1rem;
}

/* ─────────────────────────────────────────
   HERO SPLIT — 3-column grid
   ───────────────────────────────────────── */
.gc-exp-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr 0.75fr;
    min-height: 70vh;
    align-items: stretch;
}

/* LEFT */
.gc-exp-split-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.4rem;
    padding: 5rem 3rem 5rem 4rem;
    background: var(--gc-exp-bg);
}

.gc-exp-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gc-exp-text);
    letter-spacing: 0.04em;
}

.gc-exp-lead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gc-exp-mid);
    line-height: 1.7;
}

.gc-exp-intro {
    font-size: 0.88rem;
    color: var(--gc-exp-muted);
    line-height: 1.95;
    max-width: 380px;
}

.gc-exp-quote {
    position: relative;
    margin: 0;
    padding: 1.1rem 1.4rem 1.1rem 1.6rem;
    border-left: 3px solid var(--gc-exp-gold);
    background: linear-gradient(135deg, rgba(184,149,58,0.06) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
    color: var(--gc-exp-mid);
    line-height: 1.7;
    letter-spacing: 0.01em;
    max-width: 380px;
}

.gc-exp-quote-mark {
    position: absolute;
    top: -0.3rem;
    left: 0.6rem;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gc-exp-gold);
    opacity: 0.25;
    font-style: normal;
    pointer-events: none;
    user-select: none;
}

.gc-exp-hero-ctas {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
}

.gc-exp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9em 2em;
    border-radius: 100px;
    transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
    white-space: nowrap;
}

.gc-exp-btn--primary {
    background: var(--gc-exp-gold);
    color: #fff;
    border: 2px solid var(--gc-exp-gold);
}

.gc-exp-btn--primary:hover {
    background: var(--gc-exp-dark);
    border-color: var(--gc-exp-dark);
    color: #fff;
}

.gc-exp-btn--outline {
    background: transparent;
    color: var(--gc-exp-text);
    border: 2px solid rgba(28,25,20,0.25);
}

.gc-exp-btn--outline:hover {
    border-color: var(--gc-exp-gold);
    color: var(--gc-exp-gold);
}

/* Info card */
.gc-exp-hero-card {
    display: flex;
    align-items: stretch;
    background: var(--gc-exp-dark);
    border-radius: 16px;
    overflow: hidden;
    max-width: 320px;
    margin-top: auto;
    box-shadow: 0 12px 40px rgba(28,25,20,0.18);
}

.gc-exp-hero-card-img-wrap { width: 80px; flex-shrink: 0; }

.gc-exp-hero-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gc-exp-hero-card-body {
    padding: 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
}

.gc-exp-hero-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
}

.gc-exp-hero-card-desc {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}

/* CENTRE */
.gc-exp-split-center {
    position: relative;
    overflow: hidden;
}

.gc-exp-hero-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.gc-exp-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gc-exp-hero-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: var(--gc-exp-gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gc-exp-border);
}

/* Floating badges */
.gc-exp-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 0.45em 1em 0.45em 0.7em;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gc-exp-text);
    box-shadow: 0 4px 20px rgba(28,25,20,0.14);
    white-space: nowrap;
    animation: gc-exp-float 4s ease-in-out infinite;
}

.gc-exp-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gc-exp-gold);
    flex-shrink: 0;
}

.gc-exp-badge--tl { top: 12%;    left:  6%; animation-delay: 0s;   }
.gc-exp-badge--tr { top:  8%;    right: 6%; animation-delay: 0.8s; }
.gc-exp-badge--ml { top: 40%;    left:  5%; animation-delay: 1.4s; }
.gc-exp-badge--bl { bottom: 28%; left:  6%; animation-delay: 0.4s; }
.gc-exp-badge--br { bottom: 18%; right: 5%; animation-delay: 1.8s; }

@keyframes gc-exp-float {
    0%, 100% { transform: translateY(0);    }
    50%       { transform: translateY(-6px); }
}

/* RIGHT */
.gc-exp-split-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.6rem;
    padding: 5rem 3rem 5rem 2.5rem;
    background: var(--gc-exp-bg);
    border-left: 1px solid var(--gc-exp-border);
}

/* Spacer matches the overline height so right title aligns with left heading */
.gc-exp-right-spacer {
    height: calc(0.6rem * 1.4 + 1rem); /* overline line-height + margin-bottom */
    flex-shrink: 0;
}

.gc-exp-right-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gc-exp-text);
    letter-spacing: 0.04em;
}

.gc-exp-right-para {
    font-size: 0.88rem;
    color: var(--gc-exp-muted);
    line-height: 1.95;
    max-width: 360px;
}

.gc-exp-right-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.gc-exp-right-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gc-exp-mid);
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.gc-exp-right-bullets li::before {
    content: '◆';
    font-size: 0.38rem;
    color: var(--gc-exp-gold);
    flex-shrink: 0;
    margin-top: 0.45em;
}

.gc-exp-right-note {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gc-exp-gold);
    line-height: 1.7;
}

.gc-exp-right-ornament {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1rem;
    max-width: 160px;
}

.gc-exp-right-ornament span {
    flex: 1;
    height: 1px;
    background: var(--gc-exp-border);
}

.gc-exp-right-ornament i {
    font-style: normal;
    font-size: 0.42rem;
    color: var(--gc-exp-gold);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────── */
.gc-experience [data-gc-exp-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.gc-experience [data-gc-exp-reveal].gc-exp-visible {
    opacity: 1;
    transform: translateY(0);
}

.elementor-editor-active .gc-experience [data-gc-exp-reveal] {
    opacity: 1;
    transform: none;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */
@media (max-width: 1200px) {
    .gc-exp-split { grid-template-columns: 1fr 1fr; }
    .gc-exp-split-right { display: none; }
}

@media (max-width: 860px) {
    .gc-exp-split { grid-template-columns: 1fr; min-height: auto; }
    .gc-exp-split-center { order: -1; min-height: 55vw; }
    .gc-exp-split-left { padding: 3rem 2rem; }
}

@media (max-width: 520px) {
    .gc-exp-hero-ctas { flex-direction: column; }
    .gc-exp-btn { text-align: center; }
}
