:root {
    --burgundy: #3d0f15;
    --burgundy-light: #501a21;
    --burgundy-dark: #280a0e;
    --gold: #f5c518;
    --white: #f5f5f5;
    --grey: #999;
    --grey-dark: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--burgundy);
    color: var(--white);
    line-height: 1.6;
}

.gold { color: var(--gold); }

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--burgundy);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-aj {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 0.7rem;
}

.logo-divider {
    width: 2px;
    height: 30px;
    background: var(--white);
    margin-right: 0.7rem;
}

.logo-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
}

.logo-tagline {
    font-size: 0.55rem;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
    background: var(--gold);
    color: var(--burgundy);
    padding: 0.7rem 1.3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.nav-cta:hover { background: var(--white); }

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    background: radial-gradient(ellipse at 20% 80%, rgba(245,197,24,0.08) 0%, transparent 50%), var(--burgundy);
}

.hero-content { max-width: 750px; }

.hero-tagline {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
    background: var(--gold);
    color: var(--burgundy);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--grey-dark);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover { border-color: var(--white); }

section { padding: 5rem 5%; }
.section-dark { background: var(--burgundy-dark); }
.section-light { background: var(--burgundy-light); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--grey);
    max-width: 550px;
    margin: 0 auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.card:hover::before { transform: scaleX(1); }
.card:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }

.card h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.card p { color: var(--grey); margin-bottom: 1rem; }

.card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.card-link:hover { text-decoration: underline; }

.feature-card {
    background: var(--burgundy-dark);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s;
}

.feature-card:hover { transform: translateX(8px); }

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.feature-card p { color: var(--grey); }

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-strip {
    padding: 4rem 5%;
    background: var(--gold);
    color: var(--burgundy);
    text-align: center;
}

.testimonial-strip blockquote {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    max-width: 750px;
    margin: 0 auto 1.2rem;
}

.testimonial-strip cite { font-style: normal; font-weight: 700; }

.cta-section {
    text-align: center;
    padding: 6rem 5%;
    background: radial-gradient(ellipse at 80% 20%, rgba(245,197,24,0.1) 0%, transparent 50%), var(--burgundy);
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--grey);
    max-width: 450px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.cta-section .btn-row { justify-content: center; }

.page-header {
    padding: 9rem 5% 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--grey);
    max-width: 550px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--grey);
    margin-bottom: 1.2rem;
}

.about-text p.highlight {
    color: var(--white);
    font-size: 1.15rem;
}

.credentials {
    background: var(--burgundy-dark);
    padding: 1.8rem;
    height: fit-content;
}

.credentials h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.credentials ul { list-style: none; }

.credentials li {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--grey);
    font-size: 0.9rem;
}

.credentials li:last-child { border-bottom: none; }

.service-detail {
    max-width: 850px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--burgundy-dark);
    border-left: 4px solid var(--gold);
}

.service-detail h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail p {
    color: var(--grey);
    margin-bottom: 1rem;
}

.service-detail ul {
    list-style: none;
    margin: 1.2rem 0;
}

.service-detail li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    color: var(--white);
}

.service-detail li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.training-callout {
    background: rgba(245,197,24,0.1);
    border: 1px solid var(--gold);
    padding: 2.5rem;
    text-align: center;
    max-width: 700px;
    margin: 3rem auto;
}

.training-callout h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.training-callout p {
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--burgundy-dark);
    padding: 2rem;
    border-left: 4px solid var(--gold);
}

.testimonial-card blockquote {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 700;
    color: var(--gold);
}

.testimonial-card .role {
    color: var(--grey);
    font-size: 0.85rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.contact-info > p {
    color: var(--grey);
    margin-bottom: 1.5rem;
}

.contact-method {
    margin-bottom: 1.2rem;
}

.contact-method span {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.2rem;
}

.contact-method a, .contact-method p {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 0.8rem;
    background: var(--burgundy-dark);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    background: var(--gold);
    color: var(--burgundy);
    padding: 1rem 2rem;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form button:hover { background: var(--white); }

footer {
    padding: 2.5rem 5%;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--grey);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
    color: var(--grey-dark);
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .about-content, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .btn-row { flex-direction: column; }
    .btn-primary, .btn-secondary { text-align: center; width: 100%; }
    footer { flex-direction: column; text-align: center; }
    .testimonial-grid { grid-template-columns: 1fr; }
}