:root {
    --navy: #102e49;
    --navy-deep: #092237;
    --navy-soft: #183e5d;
    --gold: #c9a961;
    --gold-light: #ead9a7;
    --paper: #f5f1e8;
    --paper-deep: #ebe4d6;
    --ink: #17212a;
    --muted: #66717a;
    --white: #fffdfa;
    --font-heading: "Noto Serif Thai", serif;
    --font-body: "Sarabun", sans-serif;
    --shadow: 0 24px 60px rgba(8, 29, 46, 0.16);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.container {
    margin: 0 auto;
    max-width: 1220px;
    padding: 0 30px;
    width: 100%;
}

.skip-link {
    background: var(--gold);
    color: var(--navy-deep);
    font-weight: 700;
    left: 20px;
    padding: 10px 18px;
    position: fixed;
    top: -100px;
    z-index: 2000;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    background: rgba(255, 253, 250, 0.96);
    border-bottom: 1px solid rgba(16, 46, 73, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-shell {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: auto 1fr auto;
    min-height: 84px;
}

.brand img {
    display: block;
    height: 52px;
    width: auto;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 31px;
    justify-content: flex-end;
}

.site-nav a {
    color: #394751;
    font-size: 0.94rem;
    font-weight: 600;
    position: relative;
}

.site-nav a:not(.language-link)::after {
    background: var(--gold);
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
    width: 100%;
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav a.active {
    color: #876f35;
}

.site-nav a.active::after {
    transform: scaleX(1);
}

.language-link {
    border-left: 1px solid #d7d1c5;
    color: var(--navy) !important;
    padding-left: 24px;
}

.language-link span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 400;
    margin-left: 4px;
}

.header-cta,
.button {
    align-items: center;
    display: inline-flex;
    font-weight: 700;
    gap: 10px;
    justify-content: center;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta {
    background: var(--navy);
    color: var(--white);
    font-size: 0.94rem;
    padding: 12px 20px;
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 42px;
    padding: 8px;
    width: 46px;
}

.menu-toggle span {
    background: var(--navy);
    display: block;
    height: 2px;
    margin: 6px 0;
    transition: opacity 180ms ease, transform 180ms ease;
    width: 28px;
}

.hero {
    background: var(--navy);
    color: var(--white);
    min-height: 690px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    background: linear-gradient(90deg, rgba(9, 34, 55, 0.9) 0%, rgba(16, 46, 73, 0.2) 62%, rgba(201, 169, 97, 0.08) 100%);
    content: "";
    inset: 0;
    position: absolute;
}

.hero-pattern {
    background-image: linear-gradient(rgba(234, 217, 167, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(234, 217, 167, 0.06) 1px, transparent 1px);
    background-size: 68px 68px;
    inset: 0;
    mask-image: linear-gradient(to right, transparent 5%, black 60%, black 100%);
    position: absolute;
}

.hero-pattern::after {
    border: 1px solid rgba(201, 169, 97, 0.28);
    border-radius: 50%;
    content: "";
    height: 620px;
    position: absolute;
    right: -180px;
    top: -160px;
    width: 620px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 85px;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    min-height: 690px;
    padding-bottom: 72px;
    padding-top: 72px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    align-items: center;
    color: var(--gold-light);
    display: flex;
    font-size: 0.86rem;
    font-weight: 700;
    gap: 12px;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

.eyebrow span {
    background: var(--gold);
    display: inline-block;
    height: 2px;
    width: 38px;
}

.eyebrow.dark {
    color: #775f27;
}

.eyebrow.light {
    color: var(--gold-light);
}

.hero h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 5.1rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero h1 em {
    color: var(--gold-light);
    font-style: normal;
}

.hero-lead {
    color: #d5dde2;
    font-size: 1.12rem;
    font-weight: 300;
    line-height: 1.9;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 30px;
}

.button {
    min-height: 54px;
    padding: 13px 24px;
}

.button-gold {
    background: var(--gold);
    color: var(--navy-deep);
}

.button-gold:hover {
    background: var(--gold-light);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
}

.trust-list {
    color: #c5d0d8;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.88rem;
    gap: 22px;
    list-style: none;
}

.trust-list i {
    color: var(--gold);
    margin-right: 7px;
}

.hero-card {
    background: var(--paper);
    box-shadow: var(--shadow);
    color: var(--ink);
    min-height: 410px;
    padding: 48px 42px;
    position: relative;
}

.hero-card::before {
    border-left: 1px solid var(--gold);
    border-top: 1px solid var(--gold);
    content: "";
    height: 48px;
    left: 16px;
    position: absolute;
    top: 16px;
    width: 48px;
}

.card-number {
    color: rgba(16, 46, 73, 0.09);
    font-family: var(--font-heading);
    font-size: 5.4rem;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    right: 25px;
    top: 18px;
}

.card-kicker,
.service-tag {
    color: #876f35;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.hero-card h2 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.45;
    margin: 13px 0 18px;
}

.hero-card p:not(.card-kicker) {
    color: #55616a;
    font-size: 0.96rem;
}

.hero-card > a,
.service-copy a,
.text-link {
    align-items: center;
    color: var(--navy);
    display: inline-flex;
    font-weight: 700;
    gap: 10px;
    margin-top: 20px;
}

.hero-card > a i,
.service-copy a i,
.text-link i {
    color: var(--gold);
    transition: transform 180ms ease;
}

.hero-card > a:hover i,
.service-copy a:hover i,
.text-link:hover i {
    transform: translateX(5px);
}

.card-seal {
    align-items: center;
    border: 1px solid rgba(16, 46, 73, 0.2);
    border-radius: 50%;
    bottom: -30px;
    display: flex;
    height: 88px;
    justify-content: center;
    position: absolute;
    right: -25px;
    transform: rotate(-10deg);
    width: 88px;
}

.card-seal::before {
    border: 1px dashed rgba(16, 46, 73, 0.25);
    border-radius: 50%;
    content: "";
    inset: 7px;
    position: absolute;
}

.card-seal span {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.intro-strip {
    background: var(--gold);
    color: var(--navy-deep);
}

.intro-grid {
    align-items: center;
    display: grid;
    gap: 50px;
    grid-template-columns: 220px 1fr;
    padding-bottom: 25px;
    padding-top: 25px;
}

.intro-grid p {
    margin: 0;
}

.intro-label {
    border-right: 1px solid rgba(9, 34, 55, 0.3);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.section-pad {
    padding: 110px 0;
}

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

.section-heading {
    align-items: end;
    display: grid;
    gap: 80px;
    grid-template-columns: 1.25fr 0.75fr;
    margin-bottom: 58px;
}

.section-heading.compact {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}

.section-heading h2,
.why-panel h2,
.contact-cta h2 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.65rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.3;
}

.section-heading > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.service-list {
    border-top: 1px solid #d9d5cc;
}

.service-card {
    align-items: start;
    border-bottom: 1px solid #d9d5cc;
    display: grid;
    gap: 28px;
    grid-template-columns: 55px 76px 1fr;
    padding: 38px 28px;
    transition: background-color 180ms ease, transform 180ms ease;
}

.service-card:hover {
    background: var(--paper);
    transform: translateX(8px);
}

.service-card.featured {
    background: var(--paper);
}

.service-index {
    color: #9b8d72;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.service-icon {
    align-items: center;
    border: 1px solid rgba(16, 46, 73, 0.18);
    color: var(--navy);
    display: flex;
    font-size: 1.45rem;
    height: 62px;
    justify-content: center;
    transform: rotate(3deg);
    width: 62px;
}

.service-icon i {
    transform: rotate(-3deg);
}

.service-copy h3 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.5;
    margin: 5px 0 8px;
}

.service-copy p:not(.service-tag) {
    color: var(--muted);
    max-width: 800px;
}

.why-us {
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.why-us::after {
    border: 1px solid rgba(201, 169, 97, 0.14);
    border-radius: 50%;
    content: "";
    height: 560px;
    position: absolute;
    right: -250px;
    top: -170px;
    width: 560px;
}

.why-grid {
    display: grid;
    gap: 90px;
    grid-template-columns: 0.9fr 1.1fr;
    position: relative;
    z-index: 1;
}

.why-panel h2 {
    color: var(--white);
    margin-bottom: 22px;
}

.why-panel > p:not(.eyebrow) {
    color: #c8d2d9;
}

.why-panel .text-link {
    color: var(--gold-light);
}

.principles {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.principles article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    gap: 25px;
    grid-template-columns: 42px 1fr;
    padding: 24px 0;
}

.principles article > span {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 0.83rem;
}

.principles h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 3px;
}

.principles p {
    color: #aebbc4;
    font-size: 0.94rem;
}

.steps {
    background: var(--paper);
}

.steps-grid {
    counter-reset: steps;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.steps-grid li {
    background: var(--white);
    min-height: 275px;
    padding: 38px;
    position: relative;
}

.steps-grid li:nth-child(2) {
    transform: translateY(22px);
}

.steps-grid span {
    align-items: center;
    background: var(--navy);
    color: var(--gold-light);
    display: flex;
    font-family: var(--font-heading);
    height: 44px;
    justify-content: center;
    margin-bottom: 30px;
    width: 44px;
}

.steps-grid h3 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.42rem;
    margin-bottom: 10px;
}

.steps-grid p {
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-cta {
    background: var(--gold);
    padding: 82px 0;
}

.contact-grid {
    align-items: center;
    display: grid;
    gap: 80px;
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-cta .eyebrow {
    color: var(--navy);
}

.contact-cta .eyebrow span {
    background: var(--navy);
}

.contact-cta h2 {
    margin-bottom: 14px;
}

.contact-cta p:not(.eyebrow) {
    color: #3d4850;
}

.contact-actions {
    border-top: 1px solid rgba(9, 34, 55, 0.3);
}

.contact-actions > * {
    align-items: center;
    border-bottom: 1px solid rgba(9, 34, 55, 0.3);
    display: grid;
    gap: 20px;
    grid-template-columns: 42px 1fr;
    padding: 15px 4px;
}

.contact-actions > a:hover {
    background: rgba(255, 255, 255, 0.17);
}

.contact-actions i {
    color: var(--navy);
    font-size: 1.15rem;
    text-align: center;
}

.contact-actions span {
    font-weight: 600;
    overflow-wrap: anywhere;
}

.contact-actions small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
}

.site-footer {
    background: var(--navy-deep);
    color: #c6d0d7;
    padding: 75px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 75px;
    grid-template-columns: 1.4fr 0.7fr 0.9fr;
}

.footer-brand img {
    background: var(--white);
    height: 58px;
    margin-bottom: 20px;
    object-fit: contain;
    padding: 5px 10px;
    width: auto;
}

.footer-brand p {
    max-width: 440px;
}

.site-footer h2 {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.12rem;
    margin-bottom: 18px;
}

.site-footer a,
.site-footer p {
    color: #b7c3ca;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 9px;
}

.site-footer a:hover {
    color: var(--gold-light);
}

/* Core Thai pages */
.inner-hero {
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding: 88px 0 80px;
    position: relative;
}

.inner-hero::before {
    background-image: linear-gradient(rgba(234, 217, 167, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(234, 217, 167, 0.06) 1px, transparent 1px);
    background-size: 68px 68px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to right, transparent, black);
    position: absolute;
}

.inner-hero-grid {
    align-items: end;
    display: grid;
    gap: 75px;
    grid-template-columns: 1.25fr 0.75fr;
    position: relative;
}

.breadcrumbs {
    color: #aebbc4;
    font-size: 0.82rem;
    margin-bottom: 24px;
}

.breadcrumbs a {
    color: var(--gold-light);
}

.breadcrumbs span {
    margin: 0 8px;
}

.inner-hero h1 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.inner-hero-summary {
    border-left: 1px solid var(--gold);
    color: #d2dbe0;
    font-size: 1.04rem;
    padding-left: 28px;
}

.content-section {
    padding: 95px 0;
}

.content-section.paper {
    background: var(--paper);
}

.content-section.navy {
    background: var(--navy);
    color: var(--white);
}

.lead-grid {
    display: grid;
    gap: 85px;
    grid-template-columns: 0.85fr 1.15fr;
}

.lead-grid h2,
.content-title {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.5vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.35;
}

.lead-copy > p {
    color: var(--muted);
    margin-bottom: 18px;
}

.feature-grid,
.value-grid,
.fee-grid,
.contact-card-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.value-card,
.fee-card,
.contact-card {
    background: var(--white);
    border: 1px solid #e3ded4;
    padding: 30px;
}

.feature-card i,
.value-card i,
.contact-card > i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.feature-card h3,
.value-card h3,
.fee-card h3,
.contact-card h3 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.feature-card p,
.value-card p,
.fee-card p,
.contact-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.detail-list {
    border-top: 1px solid #d9d5cc;
    margin-top: 40px;
}

.detail-row {
    border-bottom: 1px solid #d9d5cc;
    display: grid;
    gap: 35px;
    grid-template-columns: 70px 0.65fr 1.35fr;
    padding: 28px 12px;
}

.detail-row > span {
    color: #9b8d72;
    font-family: var(--font-heading);
    font-size: 0.88rem;
}

.detail-row h3 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.5;
}

.detail-row p,
.detail-row li {
    color: var(--muted);
    font-size: 0.95rem;
}

.detail-row ul,
.check-list {
    list-style: none;
}

.detail-row li,
.check-list li {
    margin-bottom: 7px;
    padding-left: 24px;
    position: relative;
}

.detail-row li::before,
.check-list li::before {
    color: var(--gold);
    content: "✓";
    font-weight: 700;
    left: 0;
    position: absolute;
}

.page-cta {
    background: var(--gold);
    padding: 65px 0;
}

.page-cta-grid {
    align-items: center;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr auto;
}

.page-cta h2 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.35;
}

.page-cta p {
    color: #424c53;
}

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

.button-navy {
    background: var(--navy);
    color: var(--white);
}

.button-outline-navy {
    border: 1px solid var(--navy);
    color: var(--navy);
}

.team-list {
    display: grid;
    gap: 28px;
}

.team-profile {
    align-items: stretch;
    background: var(--white);
    border: 1px solid #e3ded4;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.team-profile img {
    background: var(--paper);
    height: 100%;
    max-height: 390px;
    min-height: 310px;
    object-fit: contain;
    width: 100%;
}

.team-profile-copy {
    padding: 35px 40px;
}

.team-role {
    color: #876f35;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.team-profile h2 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 5px 0 12px;
}

.team-profile p {
    color: var(--muted);
    margin-bottom: 12px;
}

.team-languages {
    border-top: 1px solid #e3ded4;
    color: var(--navy) !important;
    font-weight: 600;
    margin-top: 18px;
    padding-top: 14px;
}

.fee-card {
    position: relative;
}

.fee-amount {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin: 16px 0 10px;
}

.fee-note {
    background: var(--navy);
    color: #d7e0e5;
    margin-top: 30px;
    padding: 24px 28px;
}

.fee-note strong {
    color: var(--gold-light);
}

.contact-card a {
    color: var(--navy);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.faq-list {
    border-top: 1px solid #d9d5cc;
}

.faq-item {
    border-bottom: 1px solid #d9d5cc;
    padding: 26px 0;
}

.faq-item h3 {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.faq-item p {
    color: var(--muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    display: flex;
    gap: 25px;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.75rem;
    line-height: 1.6;
    margin: 0;
    max-width: 410px;
}

@media (max-width: 1050px) {
    .site-nav {
        gap: 18px;
    }

    .site-nav a {
        font-size: 0.88rem;
    }

    .hero-grid {
        gap: 45px;
        grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
    }

    .why-grid,
    .contact-grid {
        gap: 55px;
    }
}

@media (max-width: 980px) {
    .nav-shell {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .site-nav {
        align-items: stretch;
        background: var(--white);
        border-top: 1px solid #e6e1d8;
        display: none;
        flex-direction: column;
        gap: 0;
        grid-column: 1 / -1;
        padding: 10px 0 18px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        border-bottom: 1px solid #eee9df;
        font-size: 1rem;
        padding: 12px 2px;
    }

    .site-nav a::after {
        display: none;
    }

    .language-link {
        border-left: 0;
        color: var(--navy) !important;
        padding-left: 2px;
    }

    .header-cta {
        display: none;
    }

    .hero-grid,
    .section-heading,
    .why-grid,
    .contact-grid,
    .inner-hero-grid,
    .lead-grid,
    .page-cta-grid {
        grid-template-columns: 1fr;
    }

    .inner-hero-summary {
        max-width: 650px;
    }

    .feature-grid,
    .value-grid,
    .fee-grid,
    .contact-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-row {
        grid-template-columns: 50px 1fr;
    }

    .detail-row > div:last-child {
        grid-column: 2;
    }

    .hero-grid {
        min-height: auto;
        padding-bottom: 90px;
        padding-top: 85px;
    }

    .hero-card {
        max-width: 600px;
    }

    .section-heading {
        gap: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid li {
        min-height: auto;
    }

    .steps-grid li:nth-child(2) {
        transform: none;
    }

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

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-shell {
        min-height: 74px;
    }

    .brand img {
        height: 45px;
    }

    .hero-grid {
        padding-bottom: 72px;
        padding-top: 65px;
    }

    .hero h1 {
        font-size: 2.55rem;
    }

    .hero-actions,
    .trust-list {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

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

    .card-seal {
        display: none;
    }

    .intro-grid {
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .intro-label {
        border-bottom: 1px solid rgba(9, 34, 55, 0.25);
        border-right: 0;
        padding-bottom: 8px;
    }

    .section-pad {
        padding: 78px 0;
    }

    .inner-hero {
        padding: 64px 0 60px;
    }

    .inner-hero h1 {
        font-size: 2.55rem;
    }

    .content-section {
        padding: 72px 0;
    }

    .feature-grid,
    .value-grid,
    .fee-grid,
    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .detail-row {
        gap: 12px;
        grid-template-columns: 1fr;
        padding: 25px 2px;
    }

    .detail-row > div:last-child {
        grid-column: auto;
    }

    .team-profile {
        grid-template-columns: 1fr;
    }

    .team-profile img {
        max-height: 330px;
    }

    .team-profile-copy {
        padding: 28px 24px;
    }

    .page-cta-actions {
        flex-direction: column;
    }

    .section-heading h2,
    .why-panel h2,
    .contact-cta h2 {
        font-size: 2.2rem;
    }

    .service-card {
        gap: 18px;
        grid-template-columns: 38px 1fr;
        padding: 30px 8px;
    }

    .service-icon {
        display: none;
    }

    .service-copy {
        grid-column: 2;
    }

    .contact-cta {
        padding: 70px 0;
    }

    .contact-grid {
        gap: 38px;
    }

    .contact-actions > * {
        gap: 12px;
        grid-template-columns: 32px 1fr;
    }

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

    .footer-brand {
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
