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

:root {
    --navy: #1a2b3c;
    --navy-dark: #0f1c2a;
    --gold: #c8951a;
    --gold-light: #e8b045;
    --light-bg: #f5f4f0;
    --mid-gray: #6b7280;
    --border: #ddd9d0;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--navy); background: var(--white); }

/* NAV */
nav {
    background: var(--navy-dark);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}
.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-logo .light { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    color: #c0cad4;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--white); transition: 0.3s; }

/* HERO */
.hero {
    background: var(--navy-dark);
    padding: 100px 2rem 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px);
}
.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    position: relative;
}
.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 8vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
}
.hero h1 span { color: var(--gold); }
.hero p {
    font-size: 18px;
    font-weight: 300;
    color: #9ab0c4;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* BUTTONS */
.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 14px 32px;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border: 1.5px solid rgba(255,255,255,0.3);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* STATS BAR */
.stats-bar {
    background: var(--gold);
    padding: 20px 2rem;
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 6vw, 6rem);
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #4a3800;
    margin-top: 2px;
}

/* SECTIONS */
section { padding: 80px 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 16px;
    color: var(--mid-gray);
    line-height: 1.7;
    max-width: 580px;
}
.light-section { background: var(--light-bg); }
.dark-section { background: var(--navy-dark); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-sub { color: #7a9ab5; }

/* SLIDESHOW */
.slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    margin-top: 3rem;
    aspect-ratio: 16/9;
    max-height: 500px;
    background: var(--navy);
}
.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}
.slide.active { display: block; }
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slide-prev, .slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-prev { left: 12px; }
.slide-next { right: 12px; }
.slide-prev:hover, .slide-next:hover { background: var(--gold); }
.slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.slide-dot.active { background: var(--gold); }

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    border-radius: 4px;
    padding: 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
    color: inherit;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.service-card p { font-size: 14px; color: var(--mid-gray); line-height: 1.6; }
.learn-more {
    display: inline-block;
    margin-top: 1rem;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TWO COL */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* ABOUT BLOCK */
.about-block {
    background: var(--navy-dark);
    border-radius: 6px;
    padding: 3rem 2.5rem;
    position: relative;
}
.about-block::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--gold);
    border-radius: 6px 0 0 6px;
}
.about-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.about-block p { font-size: 15px; color: #8fa8be; line-height: 1.8; margin-bottom: 1rem; }

/* CHECKLIST */
.check-list { list-style: none; }
.check-list li {
    font-size: 15px;
    color: var(--navy);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}
.check-list li:last-child { border-bottom: none; }
.check { color: var(--gold); font-weight: 700; font-size: 18px; }

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 2rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    background: var(--light-bg);
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* VIDEO GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.video-wrap {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.video-wrap video { width: 100%; display: block; }

/* CONTACT */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}
.contact-item-val { font-size: 16px; color: var(--white); }
.contact-item-val a { color: var(--white); text-decoration: none; }
.contact-item-val a:hover { color: var(--gold-light); }

/* FORM */
.quote-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 2rem;
}
.quote-form h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #7a9ab5;
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 10px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4a6678; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
}
.honeypot { display: none !important; }
.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    padding: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 0.5rem;
    transition: background 0.2s;
}
.form-submit:hover { background: var(--gold-light); }
.form-success {
    text-align: center;
    padding: 2rem 0;
}
.form-success .check-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}
.form-success h3 { color: var(--gold); margin-bottom: 1rem; font-family: 'Barlow Condensed', sans-serif; font-size: 28px; }
.form-success p { color: #7a9ab5; line-height: 1.7; }
.form-error-msg {
    background: rgba(231,76,60,0.15);
    border: 1px solid rgba(231,76,60,0.3);
    color: #e74c3c;
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 14px;
}

/* SERVICE PAGE */
.service-hero { background: var(--navy-dark); padding: 80px 2rem 70px; text-align: center; position: relative; overflow: hidden; }
.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px);
}
.service-hero .hero-tag { position: relative; }
.service-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 6vw, 64px); font-weight: 700; color: var(--white); line-height: 1; position: relative; margin-bottom: 1rem; }
.service-hero h1 span { color: var(--gold); }
.service-hero p { font-size: 17px; color: #9ab0c4; max-width: 500px; margin: 0 auto; line-height: 1.7; position: relative; }

/* INCLUDED LIST */
.included-list { list-style: none; margin-top: 0; }
.included-list li {
    font-size: 15px;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}
.included-list li:last-child { border-bottom: none; }

/* PERSON CARD */
.person-block {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.person-role {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.person-name { color: var(--white); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.person-bio { color: #8fa8be; font-size: 14px; line-height: 1.7; }

/* FOOTER */
footer {
    background: #070f16;
    padding: 28px 2rem;
    text-align: center;
    border-top: 3px solid var(--gold);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-logo span { color: var(--gold); }
footer p { font-size: 13px; color: #4a6678; }
.footer-copy { margin-top: 8px; }
.fb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1877f2;
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-top: 12px;
    transition: background 0.2s;
}
.fb-btn:hover { background: #1464d8; }

/* VALUES GRID */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
    border-radius: 4px;
    padding: 1.5rem;
}
.value-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.value-card p { font-size: 14px; color: var(--mid-gray); line-height: 1.6; }

/* RESPONSIVE */
@media(max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
}
@media(max-width: 600px) {
    nav { padding: 0 1rem; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy-dark); padding: 1rem 2rem; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    section { padding: 60px 1.2rem; }
    .hero { padding: 70px 1.2rem 60px; }
    .services-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar { gap: 1.5rem; }
}
