:root {
    /* Vintage Brand Colors */
    --navy: #0F172A;
    --navy-light: #1E293B;
    --crimson: #991B1B;
    --crimson-light: #B91C1C;
    --cream: #F8F6F0;
    --cream-dark: #EAE6D8;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Variables */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
    --radius: 8px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--navy);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--navy);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.crimson { color: var(--crimson); }
.navy { color: var(--navy); }
.bg-cream { background-color: var(--cream); }
.text-muted { color: #64748b; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.shadow-lg { box-shadow: var(--shadow-lg); }
.rounded { border-radius: var(--radius); }

/* Buttons */
.btn-primary-large, .btn-primary-small, .btn-primary-block, .btn-secondary-small, .btn-outline-large {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-large {
    background-color: var(--crimson);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 14px 0 rgba(153, 27, 27, 0.39);
}

.btn-primary-small {
    background-color: var(--crimson);
    color: white;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-primary-block {
    background-color: var(--crimson);
    color: white;
    padding: 1rem;
    width: 100%;
    display: block;
    margin-top: auto;
}

.btn-outline-large {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 0.875rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary-small {
    background-color: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
    padding: 0.5rem 1.25rem;
}

.btn-primary-large:hover, .btn-primary-small:hover, .btn-primary-block:hover {
    background-color: var(--crimson-light);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 20px rgba(153, 27, 27, 0.23);
}

.btn-outline-large:hover {
    background-color: var(--navy);
    color: white;
}

.btn-secondary-small:hover {
    background-color: var(--cream);
    color: var(--navy);
}

/* Header & Nav */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: padding 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a:not(.btn-primary-small) {
    font-weight: 600;
    font-size: 0.95rem;
}

.main-nav a:not(.btn-primary-small):hover {
    color: var(--crimson);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--navy);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 12rem 0 8rem;
    background-color: var(--cream);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(153,27,27,0.05) 0%, rgba(248,246,240,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--crimson);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--navy-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    color: var(--navy-light);
}

/* Two Column layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 0;
}

.section-title { font-size: 2.5rem; }
.section-hook { 
    font-size: 1.25rem; 
    color: var(--crimson);
    margin-bottom: 1.5rem;
}

.seo-graph { font-size: 1.125rem; margin-bottom: 2rem; color: var(--navy-light); }

.accountability-box {
    background-color: white;
    padding: 1.5rem;
    border-left: 4px solid var(--crimson);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-list svg {
    color: var(--crimson);
    width: 20px;
    height: 20px;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--navy);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--cream);
}

/* Services */
.services-section { padding: 6rem 0; }
.section-header p { max-width: 600px; margin: 0 auto 3rem; font-size: 1.125rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.service-icon {
    background-color: var(--cream);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--crimson);
}

.service-card p {
    color: #475569;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: inline-block;
    font-size: 0.75rem;
    background: var(--cream);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--navy-light);
}

/* Pricing */
.pricing-section { padding: 6rem 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    background: white;
    border-radius: var(--radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card.premium {
    border: 2px solid var(--crimson);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--crimson);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin: 1rem 0;
    font-family: var(--font-heading);
}

.currency { font-size: 1.5rem; vertical-align: super; }
.duration { color: var(--crimson); font-weight: 600; font-size: 1.1rem; }

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body ul {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.card-body li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.card-body svg { color: var(--crimson); width: 18px; }

/* Kicker Section */
.kicker-section {
    padding: 8rem 0;
    background-color: var(--navy);
    color: white;
    position: relative;
}

.kicker-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,23,42,1) 0%, rgba(153,27,27,0.8) 100%);
    opacity: 0.9;
}

.kicker-headline { font-size: 3rem; margin-bottom: 0.5rem; }
.kicker-subheadline { font-size: 2.5rem; color: var(--cream); opacity: 0.9; }

/* Booking */
.booking-section { padding: 6rem 0; }
.booking-embed-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 1rem;
    border-radius: var(--radius);
}

/* Footer */
.site-footer {
    background-color: var(--navy);
    color: white;
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-brand p { color: #cbd5e1; margin-bottom: 1.5rem; }
.social-link { display: flex; align-items: center; gap: 0.5rem; color: white; }
.social-link:hover { color: var(--cream); }

.footer-contact h4, .footer-seo-areas h4 { color: white; margin-bottom: 1.25rem; font-size: 1.25rem; }
.nap-data a { color: white; }
.nap-data a:hover { color: var(--cream); }
.booking-link-wrapper { margin-top: 1.5rem; }

.area-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.area-list li { background: rgba(255,255,255,0.1); padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.85rem;}
.seo-text { font-size: 0.8rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; font-size: 0.9rem; color: #94a3b8; }

/* Animations & Interactions */
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.fade-in-up { opacity: 0; transform: translateY(20px); transition: 0.8s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.slide-in-left { opacity: 0; transform: translateX(-30px); transition: 0.8s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }

.slide-in-right { opacity: 0; transform: translateX(30px); transition: 0.8s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

.skip-link {
    position: absolute; left: -9999px; z-index: 999;
    padding: 1em; background-color: var(--navy); color: white; text-decoration: none;
}
.skip-link:focus { left: 50%; transform: translateX(-50%); }

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .two-column { grid-template-columns: 1fr; }
    .price-card.premium { transform: none; }
    .price-card.premium:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    .main-nav, .header-contact { display: none; } /* Simplified for mobile demo - requires hamburger in prod */
    .hero-title { font-size: 2.25rem; }
    .hero-section { padding: 8rem 0 4rem; }
    .cta-group { flex-direction: column; }
    .kicker-headline { font-size: 2rem; }
    .kicker-subheadline { font-size: 1.5rem; }
}
