:root {
    --navy: #0c2340;
    --navy-2: #102d50;
    --ink: #172b42;
    --muted: #617083;
    --cream: #f8f5ef;
    --paper: #fff;
    --gold: #c48a36;
    --gold-light: #e6c487;
    --line: #dbe1e8;
    --soft: #edf2f5;
    --shadow: 0 24px 70px rgba(16, 45, 80, .1);
    --radius: 18px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Aria, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden
}

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

button, input, textarea {
    font: inherit
}

button, .button, a {
    cursor: pointer
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    top: -100px;
    right: 16px;
    background: var(--gold);
    color: #fff;
    padding: 9px 15px;
    border-radius: 0 0 8px 8px;
    z-index: 99
}

.skip-link:focus {
    top: 0
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    padding: 18px 0;
    color: #fff;
    transition: .25s ease
}

.site-header.is-scrolled {
    background: rgba(12, 35, 64, .95);
    padding: 10px 0;
    box-shadow: 0 8px 30px #071a2d29;
    backdrop-filter: blur(14px)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap
}

.brand strong {
    display: block;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.2
}

.brand small {
    display: block;
    font-size: .68rem;
    color: #b8c7d7;
    letter-spacing: .06em;
    margin-top: 2px
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    border: 1px solid #d7b87588;
    border-radius: 12px;
    background: #ffffff0d
}

.brand-mark svg {
    width: 27px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-inline: auto
}

.main-nav a {
    font-size: .87rem;
    color: #dbe4ee;
    transition: color .2s
}

.main-nav a:hover, .main-nav a:focus-visible {
    color: var(--gold-light)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 10px 23px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 700;
    font-size: .9rem;
    transition: transform .2s, box-shadow .2s, background .2s
}

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

.button svg, .service-card a svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.button-small {
    min-height: 42px;
    padding: 7px 17px;
    font-size: .78rem
}

.header-cta {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 8px 25px #c48a3633
}

.button-gold {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 14px 28px #c48a363d
}

.button-gold:hover {
    background: #aa7225;
    box-shadow: 0 18px 33px #c48a3652
}

.button-ghost {
    border-color: #ffffff4d;
    color: #fff;
    background: #ffffff08
}

.button-ghost:hover {
    border-color: #ffffff99;
    background: #ffffff14
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: #fff;
    margin: 5px
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    padding: 170px 0 38px;
    min-height: 700px
}

.hero:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, #0c2340)
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none
}

.hero-glow-one {
    width: 650px;
    height: 650px;
    top: -350px;
    right: -160px;
    background: radial-gradient(circle, #24538355, transparent 65%)
}

.hero-glow-two {
    width: 500px;
    height: 500px;
    bottom: -280px;
    left: -160px;
    background: radial-gradient(circle, #bd873333, transparent 66%)
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:1.02fr .98fr;
    gap: 70px;
    align-items: center
}

.hero-content {
    padding-bottom: 30px
}

.eyebrow, .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: .83rem;
    letter-spacing: .05em
}

.eyebrow span {
    width: 27px;
    height: 1px;
    background: var(--gold-light)
}

h1, h2, h3, p {
    margin-top: 0
}

h1 {
    font-family: Aria, Georgia, serif;
    max-width: 620px;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 1.2;
    letter-spacing: -.04em;
    margin: 22px 0 20px;
    color: #fff;
    font-weight: 700
}

.hero-description {
    max-width: 570px;
    color: #c1cedc;
    font-size: 1.08rem;
    line-height: 2.15;
    margin-bottom: 30px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9eafc2;
    font-size: .76rem;
    margin: 20px 0 0
}

.privacy-note svg, .form-privacy svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round
}

.hero-visual {
    min-height: 425px;
    position: relative;
    display: grid;
    place-items: center
}

.legal-emblem {
    width: min(400px, 90%);
    aspect-ratio: 1;
    position: relative;
    display: grid;
    place-items: center;
    border: 1px solid #e6c48740;
    border-radius: 50%;
    background: radial-gradient(circle, #24486c80 0, #16355355 45%, transparent 70%)
}

.legal-emblem:before {
    content: "";
    position: absolute;
    inset: 32px;
    border: 1px dashed #e6c48755;
    border-radius: 50%
}

.emblem-orbit {
    position: absolute;
    border: 1px solid #e6c4875b;
    border-radius: 50%
}

.orbit-one {
    inset: -16px 54px
}

.orbit-two {
    inset: 54px -16px
}

.scale-illustration {
    width: 78%;
    height: auto;
    overflow: visible
}

.scale-illustration .thin {
    fill: none;
    stroke: url(#gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.scale-illustration .fill {
    fill: url(#gold);
    opacity: .92
}

.emblem-caption {
    position: absolute;
    bottom: 7%;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #102d50dd;
    border: 1px solid #e6c4874f;
    border-radius: 99px;
    padding: 7px 15px;
    color: #dce6ef;
    font-size: .72rem
}

.emblem-caption strong {
    color: var(--gold-light);
    font-size: .78rem
}

.experience-card {
    position: absolute;
    right: -8px;
    bottom: 4px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    color: var(--ink);
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 20px 38px #071a2d55;
    min-width: 235px
}

.experience-icon {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f7ecd9;
    color: var(--gold)
}

.experience-icon svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6
}

.experience-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy);
    line-height: 1.2
}

.experience-card small {
    display: block;
    color: var(--muted);
    font-size: .7rem
}

.credibility-strip {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid #ffffff21;
    padding-top: 23px;
    color: #a9b8c8;
    font-size: .77rem
}

.credibility-strip i {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%
}

.stats-section {
    background: var(--cream);
    border-bottom: 1px solid #e9e2d5
}

.stats-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    padding: 28px 0
}

.stat {
    text-align: center;
    border-left: 1px solid #d9d6cd
}

.stat:last-child {
    border-left: 0
}

.stat strong {
    display: block;
    color: var(--navy);
    font-size: 2.15rem;
    line-height: 1.2
}

.stat span {
    font-size: .78rem;
    color: var(--muted)
}

.section {
    padding: 115px 0
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px
}

.section-heading h2, .about-content h2, .faq-intro h2, .consultation-copy h2 {
    font-family: Aria, Georgia, serif;
    color: var(--navy);
    font-size: clamp(2rem, 3.3vw, 3.1rem);
    line-height: 1.3;
    letter-spacing: -.03em;
    margin: 11px 0 0
}

.section-heading > p {
    color: var(--muted);
    max-width: 320px;
    font-size: .9rem;
    margin-bottom: 5px
}

.section-heading.centered {
    display: block;
    text-align: center;
    max-width: 650px;
    margin-inline: auto;
    margin-bottom: 46px
}

.section-heading.centered p {
    max-width: 530px;
    margin: 14px auto 0
}

.services {
    background: #fff
}

.services-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 17px
}

.service-card {
    position: relative;
    min-height: 255px;
    padding: 28px 27px;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition: .25s
}

.service-card:hover {
    background: #fff;
    border-color: #e2c387;
    box-shadow: var(--shadow);
    transform: translateY(-5px)
}

.service-number {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #cfd7df;
    font-size: 1.1rem
}

.service-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    background: #e9dfcc;
    border-radius: 12px;
    color: var(--gold);
    margin-bottom: 24px
}

.service-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.service-card h3 {
    color: var(--navy);
    font-size: 1.12rem;
    margin-bottom: 8px
}

.service-card p {
    color: var(--muted);
    font-size: .84rem;
    line-height: 1.9;
    margin-bottom: 19px
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    font-size: .77rem;
    font-weight: 700
}

.about {
    background: var(--cream)
}

.about-grid {
    display: grid;
    grid-template-columns:.84fr 1.16fr;
    gap: 95px;
    align-items: center
}

.about-visual {
    min-height: 450px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px 47px;
    background: var(--navy);
    border-radius: 4px 80px 4px 80px;
    overflow: hidden
}

.about-visual:before, .about-visual:after {
    content: "";
    position: absolute;
    border: 1px solid #e6c48745;
    border-radius: 50%
}

.about-visual:before {
    width: 360px;
    height: 360px;
    top: -175px;
    left: -140px
}

.about-visual:after {
    width: 280px;
    height: 280px;
    bottom: -150px;
    right: -110px
}

.quote-mark {
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: .7
}

.about-visual blockquote {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 1.6rem;
    line-height: 1.8;
    margin: 15px 0 38px
}

.signature-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #abbccc;
    font-size: .75rem
}

.signature-line span {
    width: 38px;
    height: 1px;
    background: var(--gold)
}

.about-content > p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 2.2;
    max-width: 650px;
    margin: 23px 0 30px
}

.trust-list {
    display: grid;
    gap: 19px
}

.trust-item {
    display: grid;
    grid-template-columns:38px 1fr;
    gap: 14px
}

.trust-item > span {
    color: var(--gold);
    font-size: .8rem;
    padding-top: 5px
}

.trust-item h3 {
    font-size: 1rem;
    color: var(--navy);
    margin: 0 0 2px
}

.trust-item p {
    color: var(--muted);
    font-size: .8rem;
    margin: 0
}

.team {
    background: #fff
}

.team-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px
}

.team-card {
    background: #f7f8f8;
    border-radius: var(--radius);
    overflow: hidden;
    transition: .25s
}

.team-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px)
}

.member-photo {
    height: 265px;
    position: relative;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #dfe7e9, #b7c7cd);
    overflow: hidden
}

.member-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0c234055, transparent 50%)
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.member-photo span {
    font-family: Georgia, serif;
    color: #fff;
    font-size: 4rem;
    position: relative;
    z-index: 1
}

.member-photo small {
    position: absolute;
    z-index: 2;
    bottom: 13px;
    right: 15px;
    background: #0c2340dc;
    color: #fff;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: .65rem
}

.member-info {
    padding: 18px 20px 22px
}

.member-info h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.05rem
}

.member-info > span {
    color: var(--gold);
    font-size: .75rem
}

.member-info p {
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.9;
    margin: 11px 0 0
}

.process {
    color: #fff;
    background: var(--navy)
}

.section-heading.light h2 {
    color: #fff
}

.section-heading.light > p {
    color: #aebdcb
}

.process-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 28px
}

.process-step {
    position: relative;
    padding-top: 12px
}

.process-step > span {
    font-family: Georgia, serif;
    color: var(--gold-light);
    font-size: 2.4rem
}

.process-dot {
    height: 1px;
    background: #ffffff33;
    margin: 13px 0 23px;
    position: relative
}

.process-dot:after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold)
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 8px
}

.process-step p {
    color: #aebdcb;
    font-size: .79rem;
    line-height: 1.9;
    margin: 0
}

.testimonials {
    background: var(--cream)
}

.testimonial-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 17px
}

.testimonial-card {
    margin: 0;
    background: #fff;
    border-radius: var(--radius);
    padding: 27px 26px;
    box-shadow: 0 12px 30px #102d500d
}

.stars {
    color: var(--gold);
    letter-spacing: 3px;
    font-size: .85rem
}

.testimonial-card blockquote {
    color: var(--ink);
    font-size: .9rem;
    line-height: 2;
    margin: 18px 0 26px
}

.testimonial-card figcaption {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 17px
}

.testimonial-card figcaption > span {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-light);
    font-family: Georgia, serif
}

.testimonial-card figcaption strong, .testimonial-card figcaption small {
    display: block
}

.testimonial-card figcaption strong {
    font-size: .82rem
}

.testimonial-card figcaption small {
    font-size: .68rem;
    color: var(--muted)
}

.faq {
    background: #fff
}

.faq-grid {
    display: grid;
    grid-template-columns:.8fr 1.2fr;
    gap: 90px;
    align-items: start
}

.faq-intro p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 2;
    margin: 20px 0
}

.faq-intro > a {
    color: var(--gold);
    font-size: .8rem;
    font-weight: 700
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    padding: 0 0 16px;
    margin-bottom: 17px
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    list-style: none;
    color: var(--navy);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer
}

.faq-list summary::-webkit-details-marker {
    display: none
}

.faq-list summary span {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border: 1px solid #cbd4dc;
    border-radius: 50%;
    flex: 0 0 auto
}

.faq-list summary span:before, .faq-list summary span:after {
    content: "";
    position: absolute;
    background: var(--gold);
    top: 9px;
    right: 5px;
    width: 10px;
    height: 1px
}

.faq-list summary span:after {
    transform: rotate(90deg);
    transition: .2s
}

.faq-list details[open] summary span:after {
    transform: rotate(0)
}

.faq-list p {
    color: var(--muted);
    font-size: .83rem;
    line-height: 2;
    margin: 13px 0 0;
    padding-left: 35px
}

.consultation {
    background: var(--cream);
    padding: 0 0 115px
}

.consultation-card {
    background: var(--navy);
    border-radius: 5px 65px 5px 65px;
    padding: 62px 70px;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 80px;
    color: #fff
}

.consultation-copy h2 {
    color: #fff;
    max-width: 480px
}

.consultation-copy > p {
    color: #b4c3d1;
    font-size: .88rem;
    line-height: 2;
    margin: 18px 0 30px;
    max-width: 500px
}

.contact-items {
    display: flex;
    gap: 27px;
    flex-wrap: wrap
}

.contact-items > a, .contact-items > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d8e2ea
}

.contact-items svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.contact-items small, .contact-items strong {
    display: block
}

.contact-items small {
    font-size: .66rem;
    color: #9eafc2
}

.contact-items strong {
    font-size: .8rem
}

.consultation-form {
    background: #fff;
    color: var(--ink);
    border-radius: 13px;
    padding: 27px
}

.form-row {
    margin-bottom: 14px
}

.form-row label {
    display: block;
    color: var(--navy);
    font-size: .74rem;
    font-weight: 700;
    margin-bottom: 5px
}

.form-row label b {
    color: #b44
}

.form-row input, .form-row textarea {
    width: 100%;
    border: 1px solid #d7e0e7;
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fbfcfc;
    outline: none;
    font-size: .78rem;
    transition: .2s
}

.form-row input {
    height: 43px
}

.form-row textarea {
    resize: vertical;
    min-height: 80px
}

.form-row input:focus, .form-row textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px #c48a3625
}

.errorlist {
    padding: 0;
    margin: 4px 0 0;
    color: #b44;
    font-size: .68rem;
    list-style: none
}

.form-success {
    background: #edf7ef;
    color: #2d7140;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: .75rem;
    margin-bottom: 14px
}

.form-submit {
    width: 100%;
    border: 0;
    margin-top: 3px
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #82909c;
    font-size: .66rem;
    margin: 14px 0 0
}

.footer {
    background: #081b31;
    color: #fff;
    padding: 67px 0 0
}

.footer-main {
    display: grid;
    grid-template-columns:1.4fr .7fr .9fr;
    gap: 70px;
    padding-bottom: 48px
}

.footer-brand p {
    color: #8fa3b6;
    font-size: .8rem;
    margin-top: 20px
}

.footer-col h3 {
    font-size: .82rem;
    color: var(--gold-light);
    margin: 0 0 16px
}

.footer-col > a, .footer-col > p {
    display: block;
    color: #aebdcb;
    font-size: .75rem;
    margin: 9px 0
}

.footer-col > a:hover {
    color: #fff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff1c;
    padding: 17px 0;
    color: #71869b;
    font-size: .7rem
}

.footer-bottom p {
    margin: 0
}

.footer-bottom a {
    color: #bdcbd7
}

.floating-call {
    display: none
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

.empty-state {
    color: var(--muted);
    grid-column: 1/-1;
    text-align: center;
    padding: 30px
}

.footer .brand small {
    color: #8fa3b6
}

@media (max-width: 980px) {
    .main-nav {
        gap: 16px
    }

    .hero-grid {
        gap: 30px
    }

    .about-grid {
        gap: 45px
    }

    .consultation-card {
        gap: 40px;
        padding: 48px
    }

    .faq-grid {
        gap: 45px
    }

    .container {
        width: min(100% - 36px, 1180px)
    }
}

@media (max-width: 760px) {
    .container {
        width: calc(100% - 32px)
    }

    .site-header {
        padding: 12px 0
    }

    .header-inner {
        gap: 10px
    }

    .menu-toggle {
        display: block;
        order: 3
    }

    .header-cta {
        margin-right: auto;
        margin-left: 7px
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 66px;
        right: 16px;
        left: 16px;
        padding: 12px;
        background: #102d50f7;
        border: 1px solid #ffffff25;
        border-radius: 12px;
        box-shadow: 0 20px 40px #0005;
        flex-direction: column;
        align-items: stretch;
        gap: 0
    }

    .main-nav.is-open {
        display: flex
    }

    .main-nav a {
        padding: 11px 14px;
        border-bottom: 1px solid #ffffff12
    }

    .main-nav a:last-child {
        border: 0
    }

    .brand strong {
        font-size: .9rem
    }

    .brand small {
        font-size: .58rem
    }

    .brand-mark {
        width: 34px;
        height: 34px
    }

    .hero {
        padding: 128px 0 28px;
        min-height: 0
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: stretch
    }

    .hero-content {
        padding-bottom: 0
    }

    .hero-content h1 {
        font-size: 2.6rem
    }

    .hero-description {
        font-size: .95rem
    }

    .hero-visual {
        min-height: 360px;
        order: -1;
        margin-top: 10px
    }

    .legal-emblem {
        width: 275px
    }

    .experience-card {
        right: 0;
        bottom: 0;
        min-width: 205px;
        padding: 10px 13px
    }

    .experience-card strong {
        font-size: .95rem
    }

    .credibility-strip {
        overflow: hidden;
        justify-content: flex-start;
        white-space: nowrap;
        font-size: .66rem;
        padding-top: 18px
    }

    .credibility-strip span:nth-of-type(n+3), .credibility-strip i:nth-of-type(n+2) {
        display: none
    }

    .stats-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 18px;
        padding: 22px 0
    }

    .stat {
        border: 0
    }

    .stat strong {
        font-size: 1.65rem
    }

    .stat span {
        font-size: .68rem
    }

    .section {
        padding: 75px 0
    }

    .section-heading {
        display: block;
        margin-bottom: 30px
    }

    .section-heading h2, .about-content h2, .faq-intro h2, .consultation-copy h2 {
        font-size: 2rem
    }

    .section-heading > p {
        margin-top: 13px
    }

    .services-grid, .team-grid, .testimonial-grid {
        grid-template-columns:1fr
    }

    .service-card {
        min-height: 0
    }

    .about-grid, .faq-grid, .consultation-card {
        grid-template-columns:1fr
    }

    .about-grid {
        gap: 45px
    }

    .about-visual {
        min-height: 340px;
        padding: 40px 30px;
        border-radius: 4px 50px 4px 50px
    }

    .about-visual blockquote {
        font-size: 1.3rem
    }

    .process-grid {
        grid-template-columns:1fr 1fr;
        gap: 30px 18px
    }

    .process-step:nth-child(odd) {
        padding-left: 6px
    }

    .testimonial-card {
        padding: 22px
    }

    .faq-grid {
        gap: 35px
    }

    .consultation {
        padding-bottom: 75px
    }

    .consultation-card {
        padding: 40px 22px;
        border-radius: 4px 40px 4px 40px;
        gap: 32px
    }

    .contact-items {
        gap: 15px
    }

    .consultation-form {
        padding: 20px 16px
    }

    .footer {
        padding-top: 45px
    }

    .footer-main {
        grid-template-columns:1fr 1fr;
        gap: 33px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom a {
        display: block;
        margin-top: 5px
    }

    .floating-call {
        position: fixed;
        z-index: 15;
        display: grid;
        place-items: center;
        bottom: 17px;
        left: 17px;
        width: 51px;
        height: 51px;
        border-radius: 50%;
        background: var(--gold);
        color: #fff;
        box-shadow: 0 9px 22px #071a2d55
    }

    .floating-call svg {
        width: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .button, .service-card, .team-card {
        transition: none
    }
}

/* Accessibility, AEO summary and extra-small responsive refinements */
html { scroll-padding-top: 88px; }
body.menu-open { overflow: hidden; }
:where(a, button, input, textarea, summary):focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}
.mobile-nav-cta { display: none; }
.answer-section { padding: 38px 0 0; background: var(--paper); }
.answer-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    border: 1px solid #e1e6ea;
    border-right: 4px solid var(--gold);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(16, 45, 80, .06);
}
.answer-label {
    align-self: start;
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 99px;
    background: #f4ead9;
    color: #7b521b;
    font-size: .75rem;
    font-weight: 700;
    white-space: nowrap;
}
.answer-card h2 { margin: 0 0 5px; color: var(--navy); font-size: 1.12rem; line-height: 1.6; }
.answer-card p { margin: 0; max-width: 760px; color: var(--muted); font-size: .84rem; line-height: 2; }
.answer-card > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gold);
    font-size: .76rem;
    font-weight: 700;
    white-space: nowrap;
}
.answer-card > a svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-toggle, .floating-call { min-width: 44px; min-height: 44px; }
.main-nav a, .faq-list summary { min-height: 44px; }

@media (max-width: 760px) {
    .main-nav { max-height: calc(100dvh - 84px); overflow-y: auto; overscroll-behavior: contain; }
    .main-nav a { display: flex; align-items: center; }
    .main-nav .mobile-nav-cta {
        display: flex;
        justify-content: center;
        margin-top: 7px;
        border-radius: 7px;
        background: var(--gold);
        color: #fff;
        border-bottom: 0;
    }
    .hero-visual { order: initial; min-height: 330px; }
    .hero-content h1 { font-size: clamp(2.05rem, 10vw, 2.6rem); text-wrap: balance; }
    .answer-section { padding-top: 24px; }
    .answer-card { grid-template-columns: 1fr; gap: 10px; padding: 21px 19px; }
    .answer-label { width: max-content; }
    .answer-card h2 { font-size: 1rem; }
    .answer-card p { font-size: .82rem; }
    .answer-card > a, .service-card a, .faq-intro > a { display: inline-flex; align-items: center; min-height: 44px; }
    .form-row input, .form-row textarea { font-size: 16px; }
    .footer-col > a { display: flex; align-items: center; min-height: 40px; margin: 0; }
}

@media (max-width: 520px) {
    .header-cta { display: none; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-actions .button { width: 100%; }
    .legal-emblem { width: 245px; }
    .experience-card { min-width: 190px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-step { padding: 0; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .contact-items { display: grid; }
}

@media (max-width: 360px) {
    .container { width: calc(100% - 24px); }
    .brand strong { font-size: .8rem; }
    .brand small { display: none; }
    .hero { padding-top: 105px; }
    .hero-content h1 { font-size: 1.95rem; }
    .hero-visual { min-height: 290px; }
    .legal-emblem { width: 215px; }
    .experience-card { right: -4px; min-width: 175px; }
    .consultation-card { padding-inline: 15px; }
}

.insights { background: #f8f5ef; }
.insights-link { display: inline-flex; align-items: center; gap: 5px; color: var(--gold); font-size: .78rem; font-weight: 700; min-height: 44px; }
.insights-link svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { overflow: hidden; background: #fff; border: 1px solid #e4e7e8; border-radius: 15px; transition: .22s; }
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.insight-cover { display: grid; place-items: center; height: 175px; overflow: hidden; background: linear-gradient(145deg, #173b5d, #0c2340); }
.insight-cover img { width: 100%; height: 100%; object-fit: cover; }
.insight-cover span { color: var(--gold-light); font-family: Georgia, serif; font-size: 4rem; }
.insight-card > div { padding: 17px 19px 20px; }
.insight-card small { color: var(--gold); font-size: .68rem; }
.insight-card h3 { font-size: 1rem; line-height: 1.7; margin: 8px 0 6px; }
.insight-card h3 a { color: var(--navy); }
.insight-card p { color: var(--muted); font-size: .78rem; line-height: 1.9; margin: 0 0 12px; }
.insight-more { color: var(--gold); font-size: .73rem; font-weight: 700; min-height: 40px; display: inline-flex; align-items: center; }
@media (max-width: 760px) { .insights-grid { grid-template-columns: 1fr; } .insight-cover { height: 190px; } }
