:root {
    --navy: #14324a;
    --navy-deep: #0b2233;
    --teal: #4f9d94;
    --teal-light: #83c2b6;
    --tan: #c9a876;
    --sand: #faf5ea;
    --sand-dark: #f0e6d2;
    --white: #ffffff;
    --ink: #22302f;
    --ink-soft: #5c6b68;
    --terracotta: #c17b4f;

    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 12px 30px -12px rgba(11, 47, 66, 0.18);
    --shadow-sm: 0 4px 14px -6px rgba(11, 47, 66, 0.15);
    --max-width: 1180px;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.center {
    text-align: center;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--navy);
    color: var(--white);
    padding: 12px 20px;
    z-index: 1000;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    left: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: var(--navy);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
}

p {
    margin: 0 0 16px;
    color: var(--ink-soft);
}

a {
    color: inherit;
    text-decoration: none;
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin: 0 0 10px;
}
.eyebrow.center {
    text-align: center;
}

.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    margin-bottom: 14px;
}
.section-title.center {
    margin-left: auto;
    margin-right: auto;
}

.section-sub {
    max-width: 620px;
    font-size: 1.05rem;
}
.section-sub.center {
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 88px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}
.btn-sm {
    padding: 10px 18px;
    font-size: 0.9rem;
}
.btn-lg {
    padding: 16px 30px;
    font-size: 1rem;
}
.btn-block {
    width: 100%;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(11, 47, 66, 0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    display: inline-flex;
    color: var(--teal);
}
.logo-text {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--navy);
}
.logo-text em {
    color: var(--teal);
    font-style: normal;
}

.main-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
}
.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
}
.main-nav a:hover {
    color: var(--teal);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}
.header-phone:hover {
    color: var(--teal);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--navy);
    margin: 0 auto;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 130px;
    color: var(--white);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(131, 194, 182, 0.3), transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(201, 168, 118, 0.28), transparent 42%),
        linear-gradient(160deg, var(--navy-deep), var(--navy) 65%, #1e4c5f);
    z-index: -1;
}
.hero-inner {
    max-width: 720px;
}
.hero .eyebrow {
    color: var(--teal-light);
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
    max-width: 560px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    fill: var(--sand);
}

/* Trust bar */
.trust-bar {
    background: var(--sand);
    padding: 26px 0;
}
.trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy);
}
.trust-item svg {
    color: var(--teal);
    flex-shrink: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.service-card {
    background: var(--white);
    border: 1px solid rgba(11, 47, 66, 0.08);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.service-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* Why us */
.why-us {
    background: var(--sand);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.feature {
    text-align: center;
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.feature h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}
.feature p {
    font-size: 0.92rem;
    margin: 0;
}

/* About */
.about-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
}
.about-visual {
    border-radius: var(--radius);
    background: var(--sand);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.about-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-list li {
    padding-left: 28px;
    position: relative;
    color: var(--ink);
    font-weight: 500;
}
.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal);
}

/* Service area */
.areas {
    background: var(--navy);
}
.areas .eyebrow {
    color: var(--teal-light);
}
.areas .section-title,
.areas .section-sub {
    color: var(--white);
}
.areas .section-sub {
    color: rgba(255, 255, 255, 0.75);
}
.area-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}
.area-pills span {
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(201, 168, 118, 0.4);
    background: rgba(201, 168, 118, 0.08);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}
.testimonial-card {
    background: var(--sand);
    border-radius: var(--radius);
    padding: 30px 26px;
}
.stars {
    color: var(--terracotta);
    letter-spacing: 3px;
    margin-bottom: 14px;
    font-size: 1.1rem;
}
.testimonial-card p {
    color: var(--ink);
    font-size: 0.98rem;
    font-style: italic;
}
.testimonial-author {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}
.testimonial-author span {
    display: block;
    font-weight: 400;
    color: var(--ink-soft);
    font-size: 0.85rem;
    margin-top: 2px;
}

/* CTA band */
.cta-band {
    background: linear-gradient(120deg, var(--teal), #3d7d75);
    color: var(--white);
    text-align: center;
    padding: 70px 0;
}
.cta-band h2 {
    color: var(--white);
    margin-bottom: 8px;
}
.cta-band p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

/* Contact */
.contact-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--navy);
}
.contact-detail svg {
    color: var(--teal);
    flex-shrink: 0;
}

.contact-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

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

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 360px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
}

/* Footer */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 60px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo-badge {
    display: inline-block;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
}
.footer-logo-badge img {
    display: block;
    width: 150px;
    height: auto;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    font-size: 0.92rem;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a:hover {
    color: var(--white);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact a:hover {
    color: var(--white);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 22px 24px;
    font-size: 0.85rem;
}
.footer-bottom a {
    color: rgba(255, 255, 255, 0.75);
}
.footer-bottom a:hover {
    color: var(--white);
}

/* Responsive */
@media (max-width: 980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-inner {
        grid-template-columns: 1fr;
    }
    .about-visual {
        max-width: 340px;
        margin: 0 auto;
    }
    .contact-inner {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    section {
        padding: 64px 0;
    }
    .main-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 8px 24px 20px;
        box-shadow: var(--shadow);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(11, 47, 66, 0.06);
    }
    .header-phone {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-map {
        min-height: 280px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .hero {
        padding: 120px 0 100px;
    }
}
