/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: #1d4e8f; text-decoration: none; transition: color .15s ease; }
a:hover { color: #c8552a; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #0f2545;
    margin: 0 0 .5em;
    line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { margin: 0 0 1em; }

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

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
    font-weight: 600;
    color: #c8552a;
    margin: 0 0 .6rem;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid #eef0f4;
    z-index: 50;
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .75rem;
    padding-bottom: .75rem;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #0f2545;
    font-size: 1.3rem;
}
.logo-img {
    width: 92px;
    height: 46px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eef0f4;
}
.logo-text small {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: .65rem;
    letter-spacing: .15em;
    color: #6b7280;
    font-weight: 600;
    margin-left: .15em;
}

.main-nav ul {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav a {
    color: #1f2937;
    font-weight: 500;
    font-size: .92rem;
    position: relative;
    padding: .25rem 0;
}
.main-nav a:hover { color: #c8552a; }
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 2px;
    background: #c8552a;
    transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-toggle, .nav-toggle-label { display: none; }

/* ---------- Hero ---------- */
.hero {
    background: #f7f8fb;
    border-bottom: 1px solid #eef0f4;
}
.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}
.hero-cta {
    padding: 2rem 1.5rem 2.5rem;
    text-align: center;
}
.hero-cta .eyebrow {
    margin-bottom: 1.25rem;
}
.hero-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: .85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background: #c8552a;
    color: #fff;
    box-shadow: 0 8px 20px rgba(200, 85, 42, 0.35);
}
.btn-primary:hover {
    background: #a8451f;
    color: #fff;
    transform: translateY(-1px);
}
.btn-secondary {
    background: #0f2545;
    color: #fff;
    border-color: #0f2545;
}
.btn-secondary:hover {
    background: #1d4e8f;
    color: #fff;
    border-color: #1d4e8f;
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: #0f2545;
    border-color: #cfd6e1;
}
.btn-ghost:hover {
    background: #fff;
    color: #c8552a;
    border-color: #c8552a;
}

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
}
.section-alt {
    background: #f7f8fb;
}
.section-head {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section-sub {
    color: #4a5568;
    margin-top: .5rem;
}
.section-head-sub {
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.section-head-sub h3 {
    font-size: 1.3rem;
    color: #0f2545;
}

/* ---------- Grid ---------- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.about-grid { align-items: center; }
.about-photo img {
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(15, 37, 69, 0.15);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-photo .caption {
    margin-top: .75rem;
    text-align: center;
    color: #6b7280;
    font-size: .85rem;
    font-style: italic;
}

.prose p { color: #4a5568; }

/* ---------- Stats ---------- */
.stats {
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.stats li {
    background: #f7f8fb;
    border-left: 3px solid #c8552a;
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    text-align: center;
}
.stats strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0f2545;
    line-height: 1;
}
.stats span {
    display: block;
    margin-top: .25rem;
    color: #6b7280;
    font-size: .9rem;
}

/* ---------- Partners ---------- */
.partners {
    margin-top: 3.5rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eef0f4;
}
.partners-label {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .75rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
}
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.partners-logos img {
    max-height: 70px;
    width: auto;
    filter: grayscale(50%);
    opacity: .85;
    transition: all .2s ease;
}
.partners-logos img:hover {
    filter: none;
    opacity: 1;
}

/* ---------- Cards ---------- */
.card {
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid #eef0f4;
    box-shadow: 0 2px 6px rgba(15, 37, 69, 0.04);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 37, 69, 0.10);
}
.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #0f2545;
    color: #f4a672;
    border-radius: 12px;
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .08em;
    margin-bottom: 1.25rem;
}
.card h3 {
    color: #0f2545;
}
.card p {
    color: #4a5568;
    font-size: .95rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    border-top: 1px dashed #eef0f4;
    padding-top: 1rem;
}
.info-list li {
    padding: .35rem 0;
    font-size: .9rem;
    color: #4a5568;
}
.info-list li span {
    display: inline-block;
    min-width: 64px;
    color: #c8552a;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-right: .5rem;
}

/* Feature card with image */
.card-feature {
    padding: 0;
    overflow: hidden;
}
.card-feature img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.card-feature .card-body {
    padding: 2rem;
}
.price-tag {
    display: inline-block;
    background: #fef3ec;
    color: #c8552a;
    padding: .35rem .85rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    margin-top: .5rem;
}

.contact-strip {
    margin: 2.5rem auto 0;
    max-width: 880px;
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px dashed #c8552a;
    border-radius: 12px;
    font-size: .95rem;
}
.contact-strip a { font-weight: 600; }
.contact-strip a.dl-word {
    font-weight: 500;
    font-size: .82rem;
    color: #8a8a8a;
    text-decoration: none;
    margin-left: .15rem;
}
.contact-strip a.dl-word:hover {
    color: #c8552a;
    text-decoration: underline;
}

/* ---------- Gallery ---------- */
.gallery {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .5rem;
}
.gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .3s ease, filter .3s ease;
    filter: saturate(.9);
}
.gallery img:hover {
    transform: scale(1.04);
    filter: saturate(1.1);
}

/* ---------- Team ---------- */
.person {
    text-align: center;
    background: #fff;
    padding: 1.75rem 1rem;
    border-radius: 12px;
    border: 1px solid #eef0f4;
}
.person-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #1d4e8f, #0f2545);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: .05em;
}
.person h4 {
    margin-bottom: .15rem;
    color: #0f2545;
}
.person p {
    color: #6b7280;
    font-size: .85rem;
    margin: 0;
}
.person-sm {
    padding: 1rem;
    background: #fff;
}
.team-note {
    text-align: center;
    margin-top: 2.5rem;
    color: #4a5568;
    font-size: 1rem;
}

/* ---------- Contact ---------- */
.contact-grid {
    align-items: start;
}
.contact-block {
    background: #fff;
    padding: 2rem;
    border-radius: 14px;
    border: 1px solid #eef0f4;
}
.contact-block h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #c8552a;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.contact-block h3:not(:first-child) {
    margin-top: 2rem;
}
.contact-block address {
    font-style: normal;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.6;
}
.hours {
    margin-top: 1.5rem;
    color: #4a5568;
    font-size: .92rem;
}
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px dashed #eef0f4;
    font-size: .94rem;
}
.contact-list li:last-child { border-bottom: none; }
.contact-list span {
    color: #6b7280;
    font-size: .82rem;
}
.contact-list a {
    font-weight: 600;
}

.map-link {
    display: block;
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eef0f4;
}
.map-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .3s ease;
}
.map-link:hover img { transform: scale(1.04); }

.socials {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.socials a {
    display: inline-flex;
    align-items: center;
    padding: .55rem 1.2rem;
    background: #f7f8fb;
    color: #0f2545;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    border: 1px solid #eef0f4;
    transition: all .15s ease;
}
.socials a:hover {
    background: #0f2545;
    color: #fff;
    border-color: #0f2545;
}

.legal-block {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 1.75rem 2rem;
    background: #f7f8fb;
    border-radius: 14px;
    border: 1px solid #eef0f4;
}
.legal-block h4 {
    color: #c8552a;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .12em;
    margin-bottom: .35rem;
}
.legal-block p {
    margin: 0;
    font-weight: 500;
    color: #0f2545;
    font-family: 'Inter', sans-serif;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0f2545;
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 2rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.logo-footer {
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: .65rem;
}
.logo-footer .logo-text { color: #fff; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; }
.logo-footer .logo-text small { color: rgba(255,255,255,0.5); }
.footer-tag {
    margin-top: .5rem;
    font-size: .9rem;
    color: rgba(255,255,255,0.6);
}
.site-footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: right;
}
.site-footer nav a {
    color: rgba(255,255,255,0.75);
    font-size: .92rem;
}
.site-footer nav a:hover { color: #f4a672; }
.copyright {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: .82rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 800px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .legal-block { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(3, 1fr); }

    .footer-inner { grid-template-columns: 1fr; }
    .site-footer nav ul { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 1rem; }

    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 32px; height: 32px;
        cursor: pointer;
    }
    .nav-toggle-label span {
        display: block;
        height: 2px;
        background: #0f2545;
        border-radius: 2px;
        transition: transform .2s ease;
    }
    .main-nav ul {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0 1.5rem;
        border-bottom: 1px solid #eef0f4;
        box-shadow: 0 8px 16px rgba(15, 37, 69, 0.06);
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease, padding .25s ease;
    }
    .nav-toggle:checked ~ ul {
        max-height: 500px;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .main-nav ul li { padding: .5rem 0; }
    .main-nav a::after { display: none; }

    .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn { text-align: center; }
}
