:root {
    --navy: #1b1f2a;
    --slate: #2c3447;
    --gold: #c99b4f;
    --ivory: #f7f3ed;
    --mist: #eef1f6;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(27, 31, 42, 0.12);
}

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

body {
    font-family: "Manrope", sans-serif;
    color: var(--navy);
    background-color: var(--ivory);
    line-height: 1.6;
}

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

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

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background: var(--navy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    z-index: 10;
}

.skip-link:focus {
    left: 20px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--ivory);
    box-shadow: 0 4px 20px rgba(27, 31, 42, 0.08);
}

.top-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.nav {
    background: var(--ivory);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1b1f2a, #3c4763);
    color: var(--white);
    font-weight: 700;
}

.logo-title {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.4rem;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    background: var(--gold);
    color: var(--navy);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(201, 155, 79, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--ivory);
    border: 1px solid rgba(247, 243, 237, 0.7);
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(27, 31, 42, 0.2);
    box-shadow: none;
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(27, 31, 42, 0.2);
}

.hero {
    position: relative;
    padding: 5rem 0 7rem;
    background: radial-gradient(circle at top right, rgba(201, 155, 79, 0.22), transparent 45%),
        linear-gradient(135deg, #1b1f2a, #2f3850);
    color: var(--white);
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 140px;
    background: linear-gradient(to top, var(--ivory), rgba(247, 243, 237, 0));
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 3vw, 3.5rem);
    margin-bottom: 1rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.lead {
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    font-size: 0.95rem;
}

.badge-title {
    font-weight: 600;
}

.badge-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.hero-image-wrap {
    position: relative;
    padding: 1.2rem 1.2rem 0;
    background: linear-gradient(180deg, rgba(201, 155, 79, 0.15), rgba(27, 31, 42, 0));
}

.hero-image {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(27, 31, 42, 0.22);
}

.hero-image-badge {
    position: absolute;
    bottom: 16px;
    left: 28px;
    background: var(--white);
    color: var(--navy);
    padding: 0.65rem 1rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
}

.hero-image-badge span {
    display: block;
    color: #6b7280;
    font-size: 0.75rem;
}

.hero-card-inner {
    padding: 1.8rem;
}

.hero-card-inner h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.why-choose {
    padding: 4.5rem 0;
    background: var(--ivory);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.why-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.why-cards {
    display: grid;
    gap: 1.2rem;
}

.why-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.why-card h3 {
    margin-bottom: 0.4rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.practice {
    padding: 5rem 0;
    background: var(--mist);
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.practice-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(27, 31, 42, 0.06);
    transition: transform 0.2s ease;
}

.practice-card:hover {
    transform: translateY(-6px);
}

.practice-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.practice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(201, 155, 79, 0.18);
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.process {
    padding: 5rem 0;
    background: var(--ivory);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.process-image img {
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.process-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.process-steps {
    display: grid;
    gap: 1.2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: var(--mist);
    border-radius: 16px;
    padding: 1.2rem;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--navy);
    color: var(--white);
    display: grid;
    place-items: center;
    font-weight: 600;
}

.about {
    padding: 5rem 0;
    background: var(--mist);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.about-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.about-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-btn {
    margin-top: 1.8rem;
    align-self: flex-start;
}

.about-image img {
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.testimonials {
    padding: 5rem 0;
    background: var(--ivory);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.quote {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #5b6273;
}

.contact {
    padding: 5rem 0;
    background: var(--mist);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.contact-card {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-panel {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(27, 31, 42, 0.05);
}

.contact-panel-top h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}

.contact-panel-top p {
    color: #5b6273;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.info-box {
    background: var(--mist);
    padding: 1.2rem;
    border-radius: 16px;
}

.info-box h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--navy);
}

.info-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.6rem;
    box-shadow: 0 10px 20px rgba(27, 31, 42, 0.1);
}

.footer {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-text i {
    margin-right: 0.4rem;
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 980px) {
    .nav-inner {
        flex-wrap: wrap;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid,
    .why-grid,
    .process-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        grid-template-columns: 1fr;
    }

    .practice-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .top-bar-inner {
        flex-direction: column;
        align-items: center;
    }

    .top-bar-inner span:last-child {
        display: none;
    }

    .nav-links {
        gap: 1rem;
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background: var(--ivory);
        padding: 1rem 1.2rem 1.4rem;
        border-radius: 16px;
        box-shadow: var(--shadow);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-open .nav-links {
        display: flex;
    }

    .practice-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 0 6rem;
    }

    .hero-card {
        margin-top: 1rem;
    }

    .results {
        padding: 3rem 0;
    }
}
