:root {
    --primary-black: #111111;
    --primary-gray: #3A3A3A;
    --dark-gray: #222222;
    --medium-gray: #666666;
    --light-gray: #F4F4F4;
    --primary-gold: #C5A028;
    --rich-gold: #D6B23A;
    --white: #FFFFFF;
}

/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

/* GLOBAL */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
    background: var(--white);
}

.center-button {
    text-align: center;
    margin-top: 20px;
}

/* HEADER / NAVIGATION */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar {
    width: 100%;
}

.nav-container {
    width: 100%;
    max-width: 1300px;
    height: 135px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 330px;
    max-height: 105px;
    display: block;
}

.logo-mobile {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-gray);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--primary-gray);
    margin: 4px 0;
    transition: 0.3s;
}

/* HERO */

.hero {
    height: 520px;
    margin-top: 135px;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--dark-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 800;
}

.hero p {
    font-size: 24px;
    margin-bottom: 38px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* PAGE HERO */

.page-hero {
    margin-top: 135px;
    padding: 90px 0;
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("./images/page-hero-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 19px;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

/* BUTTONS */

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gold);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197,160,40,0.4);
    background: var(--rich-gold);
}

/* HOME INTRO */

.intro {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.intro h2 {
    font-size: 36px;
    color: var(--primary-gray);
    margin-bottom: 20px;
    line-height: 1.25;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
}

/* QUICK LINKS */

.quick-links {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.quick-links h2 {
    font-size: 36px;
    color: var(--primary-gray);
    margin-bottom: 40px;
    line-height: 1.25;
}

.quick-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.quick-card {
    display: block;
    text-decoration: none;
    color: var(--dark-gray);
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    border-top: 5px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.13);
}

.quick-card h3 {
    color: var(--primary-gray);
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.25;
}

.quick-card p {
    font-size: 16px;
    line-height: 1.7;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-gold);
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}

.service-card h3 {
    color: var(--primary-gray);
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.25;
}

.service-card p {
    font-size: 16px;
    line-height: 1.75;
}

/* ABOUT PAGE */

.about {
    background: var(--light-gray);
}

.about-page-container {
    max-width: 1050px;
}

.about-intro,
.about-statement,
.about-section {
    margin-bottom: 80px;
}

.about-intro h2,
.about-statement h2,
.about-section h2 {
    font-size: 38px;
    color: var(--primary-gray);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-intro p,
.about-statement p,
.about-section p {
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 22px;
    max-width: 900px;
}

.about-statement {
    padding: 45px 50px;
    background: var(--white);
    border-left: 5px solid var(--primary-gold);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.about-statement p:last-child,
.about-intro p:last-child,
.about-section p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 35px;
    margin-bottom: 45px;
}

.about-box {
    background: var(--white);
    padding: 34px 30px;
    border-radius: 8px;
    border-top: 4px solid var(--primary-gold);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.about-box h3 {
    color: var(--primary-gray);
    font-size: 22px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.about-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.leadership-section {
    margin-top: 10px;
}

.leadership-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 45px;
    align-items: start;
    background: var(--white);
    padding: 45px;
    border-radius: 10px;
    border-top: 4px solid var(--primary-gold);
    box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}

.leadership-image {
    max-width: 240px;
}

.leadership-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.leadership-text h3 {
    font-size: 30px;
    color: var(--primary-gray);
    margin-bottom: 6px;
    line-height: 1.2;
}

.leadership-title {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 17px;
}

.leadership-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* CONTACT */

.contact {
    background: var(--white);
}

.contact-content {
    max-width: 850px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary-gray);
    margin-bottom: 15px;
    line-height: 1.25;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.75;
}

.contact-form {
    max-width: 760px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 20px;
    background: var(--white);
    color: var(--dark-gray);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-form textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-gray);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--primary-black);
}

/* FOOTER */

.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 28px 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-bottom: 18px;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--white);
}

/* LEGAL PAGES */

.legal {
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--primary-gray);
    margin: 34px 0 14px;
    line-height: 1.3;
}

.legal-content h3 {
    font-size: 19px;
    color: var(--primary-gray);
    margin: 26px 0 10px;
    line-height: 1.3;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.legal-content ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-effective {
    margin-top: 34px;
    font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .nav-container {
        padding: 0 25px;
    }

    .logo-icon {
        width: 280px;
        max-height: 90px;
    }

    .nav-menu {
        gap: 18px;
    }

    .quick-link-grid,
    .services-grid,
    .about-values {
        grid-template-columns: 1fr;
    }

    .leadership-card {
        grid-template-columns: 1fr;
    }

    .leadership-image {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 110px;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 110px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.open li {
        text-align: center;
        padding: 14px 0;
    }

    .hamburger {
        display: flex;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
        width: 200px;
        max-height: none;
    }

   .hero {
        height: 300px;
        min-height: 0;
        margin-top: 110px;
        background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url("../images/hero-mobile.jpg") !important;
        background-size: contain !important;
	background-repeat: no-repeat !important;
        background-position: center center !important;
    }

    .page-hero {
        margin-top: 110px;
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.15;
    }

    .hero p {
        font-size: 19px;
        line-height: 1.45;
        margin-bottom: 32px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .intro,
    .quick-links,
    .page-content {
        padding: 60px 0;
    }

    .intro h2,
    .quick-links h2 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .container {
        width: 88%;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 17px;
    }

    .cta-button {
        padding: 14px 30px;
    }

    .quick-card,
    .service-card {
        padding: 28px;
    }

    .about-intro,
    .about-statement,
    .about-section {
        margin-bottom: 55px;
    }

    .about-intro h2,
    .about-statement h2,
    .about-section h2 {
        font-size: 30px;
    }

    .about-intro p,
    .about-statement p,
    .about-section p {
        font-size: 16px;
    }

    .about-statement {
        padding: 32px 28px;
    }

    .about-box {
        padding: 30px 26px;
    }

    .leadership-card {
        padding: 32px 28px;
        gap: 30px;
    }

    .leadership-text h3 {
        font-size: 26px;
    }

    .leadership-text p {
        font-size: 16px;
    }
}