/* Revlon × Glamour Unforgettable Cover Girl — mobile-first (375px+) */

.gcg-campaign {
    --gcg-red: #B8112A;
    --gcg-red-dark: #961020;
    --gcg-black: #000000;
    --gcg-white: #ffffff;
    --gcg-gray: #444444;
    --gcg-gray-mid: #777777;
    --gcg-gray-light: #f4f4f4;
    --gcg-border: rgba(0, 0, 0, 0.1);
    --gcg-tap-min: 44px;
    scroll-margin-top: 4rem;
    overflow-x: hidden;
    max-width: 100%;
    /* Visual section order: Cover Wall (Top 20 hero) → Intro → 5 Women → Event → Timeline */
    display: flex;
    flex-direction: column;
}

#cover-girl .gcg-gallery { order: 1; }
#cover-girl .gcg-hero { order: 2; }
#cover-girl .gcg-semifinalists { order: 3; }
#cover-girl .gcg-finalists { order: 4; }
#cover-girl .gcg-event { order: 5; }
#cover-girl .gcg-journey { order: 6; }

.gcg-campaign *,
.gcg-campaign *::before,
.gcg-campaign *::after {
    box-sizing: border-box;
}

/* ── Section 1: Hero ── */
.gcg-hero {
    position: relative;
    background: var(--gcg-red);
    color: var(--gcg-white);
    padding: 2rem 1rem 2.5rem;
    overflow: hidden;
}

.gcg-hero-hashtag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Gotham', 'Helvetica Neue', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.85;
    z-index: 2;
}

.gcg-hero-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gcg-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    margin: 0 auto;
    width: 100%;
}

.gcg-hero-eyebrow {
    font-family: 'Gotham', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 0.875rem;
    opacity: 0.85;
}

.gcg-hero h2 {
    font-family: 'Railroad Gothic Std', 'Arial Narrow', sans-serif;
    font-size: clamp(2.5rem, 11vw, 4.5rem);
    line-height: 0.92;
    letter-spacing: 0;
    margin: 0 0 0.75rem;
    text-transform: uppercase;
}

.gcg-hero-sub {
    font-family: 'Gotham', sans-serif;
    font-size: clamp(1.0625rem, 4.5vw, 1.375rem);
    font-style: italic;
    font-weight: 500;
    margin: 0 0 1.125rem;
    line-height: 1.35;
    opacity: 0.95;
}

.gcg-hero-body {
    font-family: 'Gotham', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    opacity: 0.92;
}

.gcg-hero-statement {
    margin: 0 0 1.75rem;
    padding: 0.875rem 1rem;
    font-family: 'Gotham', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: 0;
    text-transform: none;
    border-left: 3px solid var(--gcg-white);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0 0.375rem 0.375rem 0;
}

.gcg-header-logo {
    display: block;
    height: auto;
    width: auto;
    max-height: 2.75rem;
    max-width: min(42vw, 10.5rem);
    object-fit: contain;
}

@media (min-width: 768px) {
    .gcg-header-logo {
        max-height: 3.25rem;
        max-width: 12rem;
    }
}

.gcg-hero-visual-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    /* Mobile: show the campaign image above the title/copy + CTA. */
    order: -1;
}

.gcg-glamour-logo {
    display: block;
    height: auto;
    object-fit: contain;
}

.gcg-glamour-logo--hero {
    max-width: min(72vw, 14rem);
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.gcg-glamour-logo--event {
    max-width: min(80vw, 16rem);
    width: 100%;
    margin: 0 auto 1.25rem;
}

.gcg-hero-visual {
    width: 100%;
    max-width: min(92vw, 26rem);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    overflow: hidden;
    border: none;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gcg-hero-visual img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.gcg-hero-cta-wrap {
    text-align: left;
}

/* Hero CTA matches the page-hero primary buttons (text-lg / py-4 px-10) */
.gcg-hero-cta-wrap .gcg-btn {
    width: 100%;
    font-size: 1.0625rem;
    padding: 1rem 2.5rem;
}

@media (min-width: 640px) {
    .gcg-hero-cta-wrap .gcg-btn {
        width: auto;
    }
}

/* ── Shared buttons ── */
.gcg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: var(--gcg-tap-min);
    padding: 0.75rem 1.5rem;
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.gcg-btn:active {
    transform: scale(0.98);
}

.gcg-btn-primary {
    background: var(--gcg-white);
    color: var(--gcg-black);
}

.gcg-btn-primary:hover {
    background: var(--gcg-black);
    color: var(--gcg-white);
}

.gcg-btn-red {
    background: var(--gcg-red);
    color: var(--gcg-white);
}

.gcg-btn-red:hover {
    background: var(--gcg-black);
}

.gcg-btn-outline {
    background: transparent;
    color: var(--gcg-black);
    border: 2px solid var(--gcg-black);
}

.gcg-btn-outline:hover {
    background: var(--gcg-black);
    color: var(--gcg-white);
}

.gcg-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.gcg-btn-full {
    width: 100%;
}

/* ── Section headings ── */
.gcg-section {
    padding: 2.5rem 1rem;
}

.gcg-section-inner {
    max-width: 40rem;
    margin: 0 auto;
}

.gcg-section h3 {
    font-family: 'Railroad Gothic Std', 'Arial Narrow', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    letter-spacing: 0;
    text-align: center;
    margin: 0 0 1.5rem;
    color: var(--gcg-black);
    text-transform: uppercase;
}

.gcg-section-intro {
    font-family: 'Gotham', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gcg-gray);
    text-align: center;
    margin: -0.75rem auto 1.5rem;
    max-width: 32rem;
}

.gcg-optional-badge {
    display: inline-block;
    font-family: 'Gotham', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gcg-gray-light);
    color: var(--gcg-gray-mid);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* ── Section 2: How to Enter / Form ── */
.gcg-enter {
    background: var(--gcg-gray-light);
}

.gcg-enter-howlink {
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 0.9375rem;
    color: var(--gcg-gray);
    margin: -0.75rem 0 1.75rem;
}

.gcg-howto-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-weight: 700;
    color: var(--gcg-red);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.gcg-howto-link:hover {
    color: var(--gcg-black);
}

.gcg-stepper {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gcg-stepper-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.875rem;
    background: var(--gcg-white);
    border: 1px solid var(--gcg-border);
    border-radius: 0.375rem;
    font-family: 'Gotham', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gcg-gray-mid);
    transition: border-color 0.2s, color 0.2s;
}

.gcg-stepper-item.active {
    border-color: var(--gcg-red);
    color: var(--gcg-red);
}

.gcg-stepper-item.done {
    color: var(--gcg-black);
}

.gcg-stepper-num {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--gcg-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.gcg-stepper-item.active .gcg-stepper-num {
    background: var(--gcg-red);
    color: var(--gcg-white);
}

.gcg-stepper-item.done .gcg-stepper-num {
    background: var(--gcg-black);
    color: var(--gcg-white);
}

.gcg-form-wrap {
    background: var(--gcg-white);
    border-radius: 0.5rem;
    padding: 1.25rem 1rem 1.5rem;
    border: 1px solid var(--gcg-border);
}

.gcg-form-panel {
    display: none;
}

.gcg-form-panel.active {
    display: block;
    animation: gcgFadeIn 0.3s ease;
}

@keyframes gcgFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.gcg-panel-title {
    font-family: 'Gotham', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--gcg-black);
}

.gcg-field {
    margin-bottom: 1rem;
}

.gcg-field label {
    display: block;
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gcg-black);
    margin-bottom: 0.35rem;
}

.gcg-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.gcg-field textarea,
.gcg-field select {
    width: 100%;
    min-height: var(--gcg-tap-min);
    font-family: 'Gotham', sans-serif;
    font-size: 16px;
    padding: 0.625rem 0.875rem;
    border: 1px solid #ccc;
    border-radius: 0.375rem;
    outline: none;
    background: var(--gcg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.gcg-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.gcg-field input:focus,
.gcg-field textarea:focus {
    border-color: var(--gcg-red);
    box-shadow: 0 0 0 3px rgba(184, 17, 42, 0.12);
}

.gcg-field.has-error input,
.gcg-field.has-error textarea {
    border-color: var(--gcg-red);
}

.gcg-field-error {
    display: none;
    font-family: 'Gotham', sans-serif;
    font-size: 0.75rem;
    color: var(--gcg-red);
    margin-top: 0.35rem;
}

.gcg-field.has-error .gcg-field-error {
    display: block;
}

.gcg-field-helper {
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    color: var(--gcg-gray-mid);
    margin: -0.25rem 0 0.75rem;
    line-height: 1.45;
}

.gcg-field-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.gcg-word-count {
    text-align: right;
    font-family: 'Gotham', sans-serif;
    font-size: 0.75rem;
    color: var(--gcg-gray-mid);
    margin-top: 0.35rem;
}

.gcg-word-count.over-limit {
    color: var(--gcg-red);
    font-weight: 600;
}

.gcg-upload-zone {
    border: 2px dashed #bbb;
    border-radius: 0.5rem;
    padding: 1.75rem 1rem;
    text-align: center;
    cursor: pointer;
    background: var(--gcg-gray-light);
    touch-action: manipulation;
    transition: border-color 0.2s, background 0.2s;
}

.gcg-upload-zone:hover,
.gcg-upload-zone.dragover {
    border-color: var(--gcg-red);
    background: #fdf0f2;
}

.gcg-upload-zone.has-file {
    border-style: solid;
    border-color: var(--gcg-red);
    padding: 1rem;
}

.gcg-upload-icon {
    font-size: 2rem;
    color: var(--gcg-red);
    margin-bottom: 0.5rem;
}

.gcg-upload-zone p {
    font-family: 'Gotham', sans-serif;
    font-size: 0.875rem;
    color: var(--gcg-gray);
    margin: 0 0 0.25rem;
}

.gcg-upload-hint {
    font-size: 0.75rem !important;
    color: var(--gcg-gray-mid) !important;
}

.gcg-upload-preview {
    position: relative;
    max-width: 14rem;
    margin: 0 auto;
}

.gcg-upload-preview img {
    width: 100%;
    border-radius: 0.375rem;
    display: block;
}

.gcg-upload-remove {
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    width: var(--gcg-tap-min);
    height: var(--gcg-tap-min);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gcg-upload-guidelines {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    font-family: 'Gotham', sans-serif;
    font-size: 0.75rem;
    color: var(--gcg-gray-mid);
    line-height: 1.6;
}

.gcg-upload-guidelines li::before {
    content: '· ';
    color: var(--gcg-red);
    font-weight: 700;
}

.gcg-consent {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    cursor: pointer;
}

.gcg-consent input[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: auto;
    width: 1.125rem;
    height: 1.125rem;
    min-width: 1.125rem;
    min-height: 1.125rem;
    margin-top: 0.15rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    accent-color: var(--gcg-red);
    flex-shrink: 0;
    cursor: pointer;
    touch-action: manipulation;
}

.gcg-consent label {
    display: block;
    flex: 1;
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--gcg-gray);
    font-weight: 400;
    cursor: pointer;
}

.gcg-consent a {
    color: var(--gcg-red);
    text-decoration: underline;
}

.gcg-form-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.gcg-submit-error {
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    color: var(--gcg-red);
    text-align: center;
    margin: 0;
    line-height: 1.45;
}

.gcg-submit-error[hidden] {
    display: none;
}

.gcg-form-success {
    display: none;
    text-align: center;
    padding: 2rem 0.5rem;
}

.gcg-form-success.visible {
    display: block;
}

.gcg-form-success-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.gcg-form-success h4 {
    font-family: 'Railroad Gothic Std', sans-serif;
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gcg-form-success p {
    font-family: 'Gotham', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gcg-gray);
    margin: 0;
}

.gcg-closed-banner {
    display: none;
    background: var(--gcg-black);
    color: var(--gcg-white);
    text-align: center;
    padding: 0.875rem;
    border-radius: 0.375rem;
    font-family: 'Gotham', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.gcg-closed-banner.visible {
    display: block;
}

/* ── Section 3: Timeline ── */
.gcg-journey {
    background: var(--gcg-white);
}

.gcg-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gcg-milestone {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--gcg-border);
    border-radius: 0.375rem;
    background: var(--gcg-gray-light);
}

.gcg-milestone-date {
    flex-shrink: 0;
    font-family: 'Railroad Gothic Std', sans-serif;
    font-size: 0.9rem;
    color: var(--gcg-gray-mid);
    min-width: 5.5rem;
}

.gcg-milestone-text {
    font-family: 'Gotham', sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--gcg-gray);
}

.gcg-milestone--next {
    border-color: var(--gcg-red);
    background: #fdf0f2;
}

.gcg-milestone--next .gcg-milestone-date {
    color: var(--gcg-red);
}

.gcg-milestone--next .gcg-milestone-text {
    color: var(--gcg-black);
    font-weight: 600;
}

.gcg-milestone--past {
    opacity: 0.55;
}

/* ── Sections 4 & 5: Semi-finalists / Finalists ── */
.gcg-semifinalists {
    background: var(--gcg-gray-light);
}

.gcg-finalists {
    background: var(--gcg-white);
}

.gcg-coming-soon {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid var(--gcg-border);
    border-radius: 0.5rem;
    margin-top: 1rem;
    background: var(--gcg-white);
}

.gcg-coming-soon-label {
    display: inline-block;
    font-family: 'Gotham', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gcg-red);
    margin-bottom: 0.5rem;
}

.gcg-phase-section[data-phase="voting"] .gcg-coming-soon,
.gcg-phase-section[data-phase="active"] .gcg-coming-soon {
    display: none;
}

.gcg-phase-section[data-phase="coming-soon"] .gcg-voting-grid,
.gcg-phase-section[data-phase="coming-soon"] .gcg-finalists-grid {
    display: none;
}

.gcg-voting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.gcg-finalists-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gcg-candidate-card {
    background: var(--gcg-white);
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid var(--gcg-border);
}

.gcg-semifinalists .gcg-candidate-card {
    text-align: center;
}

.gcg-candidate-photo {
    aspect-ratio: 3 / 4;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 1.75rem;
}

.gcg-candidate-body {
    padding: 0.75rem;
}

.gcg-candidate-name {
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--gcg-black);
}

.gcg-candidate-story {
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--gcg-gray);
    margin: 0 0 0.75rem;
}

.gcg-vote-btn {
    width: 100%;
    min-height: var(--gcg-tap-min);
}

/* ── Section 6: Event ── */
.gcg-event {
    background: var(--gcg-black);
    color: var(--gcg-white);
}

.gcg-event h3 {
    color: var(--gcg-white);
}

.gcg-event .gcg-section-intro {
    color: rgba(255, 255, 255, 0.75);
}

.gcg-event-note {
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.5rem;
}

.gcg-event-hashtag {
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gcg-red);
    margin-top: 1.25rem;
}

.gcg-event-visual {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.375rem;
    overflow: hidden;
    border: none;
    background: transparent;
}

.gcg-event-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcg-nav-badge {
    display: inline-block;
    background: #B8112A;
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.1rem 0.35rem;
    border-radius: 2px;
    margin-left: 0.25rem;
    vertical-align: super;
}

/* ── Campaign Videos ── */
.gcg-videos {
    background: var(--gcg-white);
    padding-top: 0;
}

/* Match the hero scale for the "Be Unforgettable" intro */
.gcg-videos h3 {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    line-height: 0.95;
    margin-bottom: 1.25rem;
}

.gcg-videos .gcg-section-intro {
    font-size: 1rem;
    line-height: 1.625;
    max-width: 46rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .gcg-videos .gcg-section-intro {
        font-size: 1.125rem;
    }
}

.gcg-video-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gcg-video-grid--single {
    align-items: center;
}

.gcg-video-grid--single .gcg-video-card {
    width: 100%;
    max-width: min(72rem, 100%);
}

.gcg-video-card {
    margin: 0;
}

.gcg-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #111;
}

.gcg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #111;
}

.gcg-video-sound {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: var(--gcg-tap-min);
    height: var(--gcg-tap-min);
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.65);
    color: var(--gcg-white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    z-index: 3;
}

.gcg-video-sound[aria-pressed="true"] {
    background: var(--gcg-red);
}

.gcg-video-card figcaption {
    font-family: 'Gotham', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gcg-gray);
    text-align: center;
    margin-top: 0.625rem;
}

@media (min-width: 640px) {
    .gcg-hero {
        padding: 2.5rem 1.5rem;
    }

    .gcg-field-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0 1rem;
    }

    .gcg-form-actions {
        flex-direction: row;
        justify-content: space-between;
    }

    .gcg-btn-full-sm {
        width: auto;
    }

    .gcg-voting-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gcg-finalists-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gcg-video-grid:not(.gcg-video-grid--single) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .gcg-videos .gcg-section-inner {
        max-width: 72rem;
    }

    .gcg-video-grid {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .gcg-videos .gcg-section-inner {
        max-width: 90rem;
    }

    .gcg-video-grid {
        gap: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .gcg-videos .gcg-section-inner {
        max-width: 100rem;
    }
}

@media (min-width: 768px) {
    .gcg-hero {
        padding: 3rem 2rem;
    }

    .gcg-hero-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    /* Desktop: restore source order (copy left, image right). */
    .gcg-hero-visual-col {
        order: 0;
    }

    .gcg-hero-copy {
        text-align: left;
    }

    .gcg-hero-cta-wrap {
        text-align: left;
    }

    .gcg-glamour-logo--hero {
        max-width: 16rem;
    }

    .gcg-glamour-logo--event {
        max-width: 18rem;
    }

    .gcg-hero-visual {
        max-width: min(100%, 34rem);
        aspect-ratio: 1 / 1;
    }

    .gcg-section {
        padding: 3.5rem 2rem;
    }

    .gcg-timeline {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .gcg-milestone {
        flex: 1 1 calc(33.333% - 0.75rem);
        flex-direction: column;
        min-width: 10rem;
    }

    .gcg-voting-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .gcg-finalists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gcg-milestone {
        flex: 1 1 calc(20% - 0.75rem);
    }
}

/* ── The Cover Wall: live entry gallery ── */
.gcg-gallery {
    position: relative;
    background: var(--gcg-black);
    color: var(--gcg-white);
    overflow: hidden;
}

.gcg-gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 55% at 50% -5%, rgba(184, 17, 42, 0.5), transparent 70%);
    pointer-events: none;
}

.gcg-gallery-inner {
    position: relative;
    z-index: 1;
    max-width: 64rem;
}

.gcg-gallery-eyebrow {
    display: block;
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gcg-red);
    margin-bottom: 0.75rem;
}

.gcg-gallery .gcg-gallery-heading {
    font-family: 'Railroad Gothic Std', 'Arial Narrow', sans-serif;
    font-size: clamp(2.25rem, 7vw, 4.5rem);
    line-height: 0.95;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.gcg-gallery-accent {
    font-style: italic;
    color: var(--gcg-red);
    text-transform: lowercase;
}

.gcg-gallery-accent--solid {
    font-style: normal;
    text-transform: uppercase;
}

.gcg-gallery-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.05rem, 2.4vw, 1.5rem);
    line-height: 1.5;
    max-width: 44rem;
}

.gcg-gallery-count {
    text-align: center;
    font-family: 'Gotham', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 1.5rem;
    min-height: 1rem;
}

.gcg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

@media (min-width: 640px) {
    .gcg-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .gcg-gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.gcg-gallery-tile {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: gcgTileIn 0.5s ease both;
}

.gcg-gallery-order {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    z-index: 2;
    font-family: 'Gotham', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.25rem 0.5rem;
    backdrop-filter: blur(6px);
}

@keyframes gcgTileIn {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to { opacity: 1; transform: none; }
}

.gcg-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcg-gallery-mono {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Railroad Gothic Std', 'Arial Narrow', sans-serif;
    font-size: clamp(2rem, 7vw, 2.75rem);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.gcg-gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.75rem 0.6rem 0.55rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent);
}

.gcg-gallery-name {
    font-family: 'Gotham', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcg-gallery-loc {
    font-family: 'Gotham', sans-serif;
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.1rem 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcg-gallery-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
    font-family: 'Gotham', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gcg-red);
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
}

.gcg-gallery-badge--preview {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.gcg-gallery-tile--placeholder img {
    filter: saturate(0.75) brightness(0.92);
}

.gcg-gallery-tile--add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 1rem;
    cursor: pointer;
    font: inherit;
    color: inherit;
    background: rgba(184, 17, 42, 0.1);
    border: 2px dashed rgba(184, 17, 42, 0.55);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gcg-gallery-tile--add:hover,
.gcg-gallery-tile--add:focus-visible {
    background: rgba(184, 17, 42, 0.2);
    border-color: var(--gcg-red);
    transform: translateY(-2px);
    outline: none;
}

.gcg-gallery-add-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: var(--gcg-red);
    color: #fff;
    font-family: 'Gotham', sans-serif;
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
}

.gcg-gallery-add-label {
    font-family: 'Gotham', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    max-width: 8rem;
    line-height: 1.35;
}

.gcg-gallery-tile--new {
    border-color: var(--gcg-red);
    box-shadow: 0 0 0 1px var(--gcg-red), 0 0 22px rgba(184, 17, 42, 0.55);
    animation: gcgTileIn 0.5s ease both, gcgGlow 2.4s ease-in-out 0.5s 2;
}

@keyframes gcgGlow {
    0%, 100% { box-shadow: 0 0 0 1px var(--gcg-red), 0 0 16px rgba(184, 17, 42, 0.4); }
    50% { box-shadow: 0 0 0 1px var(--gcg-red), 0 0 32px rgba(184, 17, 42, 0.9); }
}

.gcg-gallery-empty {
    text-align: center;
    font-family: 'Gotham', sans-serif;
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 1rem;
}

.gcg-gallery-cta-wrap {
    text-align: center;
    margin-top: 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
    .gcg-gallery-tile,
    .gcg-gallery-tile--new {
        animation: none;
    }
}

@media (min-width: 640px) {
    .gcg-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .gcg-gallery-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
