
						/* =============================================
   Thank-you page-specific styles
   (Header, hero, base resets, palette, .pageWidth
    now live in /css/style.css)
============================================= */
.ty-body {
    padding: 72px 0 96px;
    background: var(--white);
}

.ty-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 48px 36px;
    box-shadow: var(--shadow-sm);
}

.ty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1px solid rgba(201,148,58,0.3);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.ty-card h2 {
    color: var(--navy);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 14px;
}

.ty-card p {
    font-size: 0.98rem;
    color: var(--text-body);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.ty-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ty-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ty-btn-primary {
    background: var(--gold);
    color: var(--white);
}

.ty-btn-primary:hover {
    color: var(--white);
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.ty-contact {
    margin-top: 36px;
    font-size: 0.86rem;
    color: var(--text-muted);
}

.ty-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.ty-contact a:hover { color: var(--navy); }

@media (max-width: 767px) {
    .ty-body { padding: 48px 0 64px; }
    .ty-card { padding: 36px 22px; }
}
						
