/* --- PRINCE GEORGE DESIGN | STUDIO SYSTEM --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&family=Outfit:wght@800&display=swap');

:root {
    --white: #ffffff;
    --dirty-white: #f7f7f7; 
    --primary: #f9452d; 
    --text-main: #1a1a1a;
    --text-dim: #6c757d;
    --border-glass: rgba(0, 0, 0, 0.05);
    --transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --font-head: 'Outfit', sans-serif;
}

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

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    background: #000;
}

body { 
    color: var(--text-main); 
    font-family: 'Space Grotesk', sans-serif; 
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- ADVANCED ANIMATION CORE --- */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    transition: var(--transition);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Progress Bar Styling */
#progressBar {
    position: fixed;
    top: 0; 
    left: 0; 
    height: 4px;
    background: var(--primary);
    width: 0%; 
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* --- Navigation --- */
nav {
    padding: 30px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 2000;
    border-bottom: 1px solid var(--border-glass);
}

.logo { 
    font-family: 'Outfit'; 
    font-size: 1.5rem; 
    text-transform: uppercase; 
    font-weight: 800; 
    text-decoration: none; 
    color: #000; 
    letter-spacing: -1px; 
}
.logo span { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a { 
    text-decoration: none; 
    color: var(--text-main); 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--primary); }
.nav-phone { color: var(--primary) !important; }

/* --- Global Section Logic --- */
header, section, footer {
    min-height: 100vh;
    padding: 160px 10% 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
}

header, section:nth-of-type(even) { background-color: var(--white); }
section:nth-of-type(odd), footer { background-color: var(--dirty-white); }

/* --- GLOBAL HERO SCALE --- */
.hero {
    padding-top: 200px;
    padding-bottom: 120px;
    min-height: 80vh;
}

.hero h1 { 
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 10vw, 7.5rem); 
    line-height: 0.85; 
    letter-spacing: -4px; 
    margin-bottom: 30px; 
    transition: transform 0.1s ease-out; /* For parallax smooth movement */
}

.hero p { 
    max-width: 650px; 
    font-size: 1.3rem; 
    color: var(--text-dim); 
    margin-bottom: 40px; 
}

/* --- FULL SCREEN PROMO --- */
#promo {
    background: var(--primary);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    z-index: 1;
}

.promo-content {
    text-align: center;
    color: #fff;
    max-width: 1000px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-main {
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 1.05; 
    letter-spacing: -4px;
    margin-bottom: 30px;
    font-weight: 800;
}

/* --- FULL PAGE PRICING --- */
#pricing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 10%;
}

.price-card {
    padding: 60px 40px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-glass);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-card.featured {
    border: 2px solid var(--primary);
    background: #fff;
}

.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.cost {
    font-family: var(--font-head);
    font-size: 6rem; 
    font-weight: 800;
    letter-spacing: -5px;
    line-height: 1;
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    color: var(--text-main);
}

.cost span {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-left: 10px;
    color: var(--text-dim);
    font-family: 'Space Grotesk', sans-serif;
}

/* --- UI Elements --- */
.hero-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -2px;
}

/* --- Grids --- */
.stats-grid, .bento-grid, .pricing-grid {
    display: grid; gap: 30px; width: 100%; margin-top: 50px;
}

@media (min-width: 1024px) {
    .stats-grid, .bento-grid, .pricing-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

.stat-item, .bento-item {
    padding: 60px 40px; border-radius: 40px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-glass);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover, .bento-item:hover {
    transform: translateY(-10px);
    background: #fff;
}

.bento-item i {
    display: flex;
    height: 50px;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

/* --- Buttons --- */
.btn { padding: 22px 48px; border-radius: 100px; font-weight: 700; text-transform: uppercase; text-decoration: none; display: inline-block; transition: 0.3s; border: 1px solid #000; text-align: center; }
.btn-black { background: #000; color: #fff; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); width: 100%; }
.btn-white { background: #fff !important; color: var(--primary) !important; border: none !important; font-weight: 800; }

.btn:hover { transform: scale(1.05); }

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    header, section { scroll-snap-align: none; min-height: auto; padding: 100px 8%; }
    .nav-links { display: none; }
    #promo { margin-left: 0; margin-right: 0; left: 0; right: 0; width: 100%; }
    .cost { font-size: 4.5rem; }
    .price-card.featured { transform: scale(1); }
    .price-card:hover { transform: none; }
}
