/* Gold's Gym Prince George — Shared Brand CSS */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --gg-gold: #FEDB00;
    --gg-gold-hover: #e6c800;
    --gg-black: #231F20;
    --gg-white: #FFFFFF;
    --gg-off-white: #F7F7F8;
    --gg-dark-iron: #413C3D;
    --gg-iron: #575757;
    --gg-true-black: #000000;
    --gg-font-headline: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --gg-font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --gg-container: 1140px;
    --gg-gap: 24px;
    --gg-radius: 4px;
    --gg-transition: all 0.3s ease;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--gg-font-body);
    font-weight: 300;
    color: var(--gg-black);
    background: var(--gg-off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Container ── */
.container { max-width: var(--gg-container); margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--gg-font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    line-height: 1.05;
    color: var(--gg-black);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); letter-spacing: 0.5rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: 0.4rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); letter-spacing: 0.25rem; }
h4 { font-size: 1.2rem; letter-spacing: 0.15rem; }

p { margin-bottom: 1rem; color: var(--gg-dark-iron); }
.text-gold { color: var(--gg-gold); }
.section-dark .text-gold, .hero .text-gold, .cta-section .text-gold { color: var(--gg-gold); }
.text-white { color: var(--gg-white); }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    font-family: var(--gg-font-headline);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: var(--gg-radius);
    cursor: pointer;
    transition: var(--gg-transition);
    text-align: center;
    line-height: 1;
}
.btn-gold {
    background: var(--gg-gold);
    color: var(--gg-black);
    border-color: var(--gg-gold);
}
.btn-gold:hover { background: var(--gg-gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(254,219,0,0.35); }

.btn-outline {
    background: transparent;
    color: var(--gg-white);
    border-color: var(--gg-white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-dark {
    background: var(--gg-black);
    color: var(--gg-white);
    border-color: var(--gg-black);
}
.btn-dark:hover { background: #333; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.btn-lg { padding: 18px 44px; font-size: 1.15rem; }

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 40px 24px; }
.hero h1 { color: var(--gg-white); margin-bottom: 16px; }
.hero .subtitle {
    font-family: var(--gg-font-body);
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero .hero-logo { max-width: 220px; margin: 0 auto 28px; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Ticker Bar ── */
.ticker {
    background: var(--gg-true-black);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}
.ticker-inner {
    display: inline-flex;
    animation: tickerScroll 20s linear infinite;
}
.ticker span {
    font-family: var(--gg-font-headline);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--gg-gold);
    padding: 0 32px;
}
.ticker span::after { content: '  ★  '; opacity: 0.5; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Section ── */
.section { padding: 72px 0; }
.section-dark { background: var(--gg-true-black); color: var(--gg-white); }
.section-dark h2, .section-dark h3 { color: var(--gg-white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-gold { background: var(--gg-gold); color: var(--gg-black); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-header .gold-line { width: 60px; height: 4px; background: var(--gg-gold); margin: 16px auto 20px; }
.section-dark .gold-line { background: var(--gg-gold); }

/* ── Feature Cards ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--gg-gap); }
.feature-card {
    background: var(--gg-white);
    border-radius: var(--gg-radius);
    overflow: hidden;
    text-align: center;
    transition: var(--gg-transition);
    border: 1px solid rgba(0,0,0,0.06);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.feature-card .card-img {
    width: 100%; height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.feature-card:hover .card-img { transform: scale(1.05); }
.feature-card .card-img-wrap { overflow: hidden; }
.feature-card .card-body { padding: 28px 24px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { font-size: 0.93rem; color: var(--gg-iron); margin-bottom: 0; }

/* Dark feature cards */
.section-dark .feature-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
.section-dark .feature-card h3 { color: var(--gg-white); }
.section-dark .feature-card p { color: rgba(255,255,255,0.7); }

/* ── Stats Bar ── */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0; }
.stat-item {
    text-align: center;
    padding: 32px 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--gg-font-headline);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gg-gold);
    letter-spacing: 0.1rem;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-family: var(--gg-font-headline);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: rgba(255,255,255,0.65);
}

/* ── CTA / Form Section ── */
.cta-section {
    background: var(--gg-true-black);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 { color: var(--gg-gold); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 32px; }

.trial-form {
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.trial-form input {
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--gg-radius);
    background: rgba(255,255,255,0.08);
    color: var(--gg-white);
    font-family: var(--gg-font-body);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--gg-transition);
}
.trial-form input::placeholder { color: rgba(255,255,255,0.4); }
.trial-form input:focus { outline: none; border-color: var(--gg-gold); background: rgba(255,255,255,0.12); }
.trial-form .btn-gold { width: 100%; border: none; padding: 16px; font-size: 1.1rem; }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ── Comparison Table ── */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 700px;
    font-size: 0.95rem;
}
.compare-table th {
    font-family: var(--gg-font-headline);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 3px solid var(--gg-gold);
}
.compare-table th:first-child { text-align: left; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.compare-table td:not(:first-child) { text-align: center; font-size: 1.3rem; }
.compare-table tr:last-child td { border-bottom: none; }
.section-dark .compare-table td { border-color: rgba(255,255,255,0.08); }
.section-dark .compare-table th { border-color: var(--gg-gold); color: var(--gg-white); }
.section-dark .compare-table td { color: rgba(255,255,255,0.85); }

/* ── Location Section ── */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.location-info h3 { margin-bottom: 20px; }
.location-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.location-detail .ld-icon { flex-shrink: 0; width: 28px; text-align: center; display: flex; align-items: center; justify-content: center; }
.location-detail .ld-icon svg { width: 22px; height: 22px; color: var(--gg-black); }
.section-dark .location-detail .ld-icon svg { color: var(--gg-gold); }
.location-detail .ld-text { font-size: 0.95rem; }
.location-detail .ld-text strong { display: block; font-weight: 600; color: var(--gg-black); }
.location-detail .ld-text a { color: var(--gg-black); font-weight: 500; }
.location-detail .ld-text a:hover { color: var(--gg-gold); }
.map-container { border-radius: var(--gg-radius); overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.map-container iframe { width: 100%; height: 350px; border: 0; }

.hours-table { width: 100%; font-size: 0.9rem; margin-top: 8px; }
.hours-table td { padding: 4px 0; }
.hours-table td:last-child { text-align: right; font-weight: 400; }

/* ── Footer ── */
.footer {
    background: var(--gg-true-black);
    padding: 40px 0;
    text-align: center;
    border-top: 3px solid var(--gg-gold);
}
.footer-logo { max-width: 200px; margin: 0 auto 20px; }
.footer p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 4px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-top: 12px; }
.footer-links a {
    color: var(--gg-gold);
    font-family: var(--gg-font-headline);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.85rem;
    transition: var(--gg-transition);
}
.footer-links a:hover { color: var(--gg-white); }

/* ── Sticky Mobile CTA ── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gg-true-black);
    padding: 12px 16px;
    z-index: 1000;
    border-top: 2px solid var(--gg-gold);
    text-align: center;
}
.sticky-cta .btn { width: 100%; padding: 14px; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero { min-height: 85vh; }
    h1 { letter-spacing: 0.25rem; }
    h2 { letter-spacing: 0.2rem; }
    .section { padding: 52px 0; }
    .location-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 12px; }
    .sticky-cta { display: block; }
    body { padding-bottom: 70px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }
    .footer-links { flex-direction: column; gap: 12px; }
    .compare-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .compare-table { min-width: 500px; font-size: 0.85rem; }
    .compare-table th { padding: 12px 14px; font-size: 0.85rem; }
    .compare-table td { padding: 10px 14px; }
}

@media (max-width: 480px) {
    .hero { min-height: 80vh; }
    .container { padding: 0 16px; }
    .feature-card { padding: 28px 20px; }
    .stats-bar { grid-template-columns: 1fr 1fr; }
}
