:root {
    --navy-950: #071825;
    --navy-900: #0a2033;
    --navy-800: #123451;
    --navy-700: #1e496a;
    --gold-600: #ad7a32;
    --gold-500: #c7984f;
    --gold-300: #e7c68f;
    --ivory-100: #f4f0e8;
    --ivory-50: #faf8f3;
    --white: #fff;
    --slate-700: #40505d;
    --slate-500: #687783;
    --line: rgba(10, 32, 51, .13);
    --shadow-sm: 0 18px 45px rgba(7, 24, 37, .08);
    --shadow-lg: 0 32px 80px rgba(7, 24, 37, .15);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ivory-50);
    color: var(--navy-900);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input {
    font-family: "Segoe UI", Arial, sans-serif;
}

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

a {
    color: inherit;
}

em {
    color: var(--gold-600);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.shell {
    width: min(100% - 48px, 1240px);
    margin-inline: auto;
}

.section {
    padding: 120px 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 6px;
    background: var(--white);
    color: var(--navy-900);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: var(--gold-600);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 1px;
    background: currentColor;
}

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

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button:focus-visible,
.nav-link:focus-visible,
.text-link:focus-visible,
.branch-card a:focus-visible,
.site-footer a:focus-visible {
    outline: 3px solid rgba(199, 152, 79, .45);
    outline-offset: 3px;
}

.button--primary {
    background: var(--navy-900);
    box-shadow: 0 12px 28px rgba(10, 32, 51, .16);
    color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--navy-700);
    color: var(--white);
}

.button--secondary,
.button--ghost {
    border-color: rgba(10, 32, 51, .22);
    background: transparent;
    color: var(--navy-900);
}

.button--secondary:hover,
.button--ghost:hover {
    border-color: var(--navy-900);
    background: var(--white);
    color: var(--navy-900);
}

.button--gold {
    background: var(--gold-500);
    box-shadow: 0 12px 28px rgba(173, 122, 50, .2);
    color: var(--navy-950);
}

.button--gold:hover {
    background: var(--gold-300);
    color: var(--navy-950);
}

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

.button--outline-light {
    border-color: rgba(255,255,255,.4);
    color: var(--white);
}

.button--outline-light:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
    color: var(--white);
}

.button--small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 13px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 8px 30px rgba(7, 24, 37, .06);
}

.service-bar {
    background: var(--navy-950);
    color: rgba(255,255,255,.82);
    font-size: 12px;
}

.service-bar__inner {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.service-bar p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
}

.service-bar__status {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #75c79b;
    box-shadow: 0 0 0 4px rgba(117,199,155,.13);
}

.service-bar__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-bar__links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
}

.service-bar__links a:hover {
    color: var(--gold-300);
}

.service-bar__links a span {
    color: rgba(255,255,255,.55);
}

.service-bar__fsp {
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,.16);
}

.navbar {
    min-height: 82px;
    padding: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    width: 194px;
    height: auto;
}

.navbar-nav {
    gap: 4px;
}

.nav-link {
    position: relative;
    margin: 0 5px;
    padding: 29px 8px !important;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 700;
}

.nav-link::after {
    position: absolute;
    right: 8px;
    bottom: 21px;
    left: 8px;
    height: 1px;
    background: var(--gold-500);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--gold-600);
}

.nav-link:hover::after,
.nav-link:focus::after {
    transform: scaleX(1);
}

.navbar__login {
    margin-left: 12px;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    position: relative;
    width: 25px;
    height: 18px;
    border-top: 2px solid var(--navy-900);
    border-bottom: 2px solid var(--navy-900);
    background-image: none !important;
}

.navbar-toggler-icon::after {
    position: absolute;
    top: 6px;
    right: 0;
    left: 0;
    height: 2px;
    background: var(--navy-900);
    content: "";
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0 0;
    background:
        radial-gradient(circle at 10% 25%, rgba(199,152,79,.11), transparent 28%),
        linear-gradient(135deg, #fff 0%, var(--ivory-50) 56%, #f1ece2 100%);
}

.hero__ambient {
    position: absolute;
    top: -170px;
    right: -120px;
    width: 640px;
    height: 640px;
    border: 1px solid rgba(173,122,50,.15);
    border-radius: 50%;
    pointer-events: none;
}

.hero__ambient::before,
.hero__ambient::after {
    position: absolute;
    border: 1px solid rgba(173,122,50,.11);
    border-radius: 50%;
    content: "";
    inset: 70px;
}

.hero__ambient::after {
    inset: 142px;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 655px;
    align-items: center;
    grid-template-columns: minmax(0, .91fr) minmax(480px, 1.09fr);
    gap: 74px;
}

.hero__content {
    padding: 34px 0 54px;
}

.hero h1,
.story h2,
.section-heading h2,
.standard h2,
.credibility h2,
.experience h2,
.branches h2,
.contact h2 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(48px, 5.2vw, 76px);
    font-weight: 650;
    letter-spacing: -.052em;
    line-height: 1.02;
}

.hero h1 em,
.story h2 em,
.section-heading h2 em,
.standard h2 em,
.credibility h2 em,
.experience h2 em,
.branches h2 em,
.contact h2 em {
    letter-spacing: -.035em;
}

.hero__lead {
    max-width: 610px;
    margin: 28px 0 34px;
    color: var(--slate-700);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero__assurance {
    display: flex;
    gap: 34px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero__assurance > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero__assurance i {
    color: var(--gold-600);
    font-size: 23px;
}

.hero__assurance span {
    display: flex;
    color: var(--slate-500);
    font-size: 12px;
    line-height: 1.4;
    flex-direction: column;
}

.hero__assurance strong {
    color: var(--navy-900);
    font-size: 13px;
}

.hero__visual {
    position: relative;
    min-height: 610px;
}

.hero__image-frame {
    position: absolute;
    overflow: hidden;
    border-radius: 220px 220px 20px 20px;
    box-shadow: var(--shadow-lg);
    inset: 0 0 0 48px;
}

.hero__image-frame::after {
    position: absolute;
    background: linear-gradient(180deg, transparent 58%, rgba(7,24,37,.42));
    content: "";
    inset: 0;
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 51% center;
}

.hero__image-caption {
    position: absolute;
    right: -24px;
    bottom: 36px;
    display: flex;
    width: 300px;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 14px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.hero__caption-mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ivory-100);
    color: var(--gold-600);
    place-items: center;
}

.hero__image-caption p,
.hero__image-caption strong,
.hero__image-caption span {
    display: block;
    margin: 0;
}

.hero__image-caption strong {
    color: var(--navy-900);
    font-size: 13px;
}

.hero__image-caption p > span {
    color: var(--slate-500);
    font-size: 11px;
}

.hero__seal {
    position: absolute;
    top: 66px;
    left: 0;
    display: flex;
    width: 112px;
    height: 112px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(199,152,79,.32);
    border-radius: 50%;
    background: var(--navy-900);
    box-shadow: 0 15px 30px rgba(7,24,37,.22);
    color: var(--white);
    flex-direction: column;
    line-height: 1.12;
}

.hero__seal::before {
    position: absolute;
    border: 1px solid rgba(231,198,143,.35);
    border-radius: 50%;
    content: "";
    inset: 7px;
}

.hero__seal span {
    font-size: 8px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero__seal strong {
    color: var(--gold-300);
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
}

.hero__trust-row {
    position: relative;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
}

.hero__trust-row p {
    margin: 0;
    color: var(--slate-500);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero__trust-row div {
    display: flex;
    gap: 48px;
}

.hero__trust-row span {
    color: var(--navy-900);
    font-family: Georgia, serif;
    font-size: 17px;
}

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

.story__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 110px;
}

.story__visual {
    position: relative;
    min-height: 590px;
    padding-right: 54px;
}

.story__visual::before {
    position: absolute;
    top: -26px;
    right: 22px;
    width: 65%;
    height: 70%;
    border: 1px solid rgba(173,122,50,.23);
    border-radius: 200px 200px 0 0;
    content: "";
}

.story__portrait {
    position: absolute;
    overflow: hidden;
    border-radius: 18px 180px 18px 18px;
    box-shadow: var(--shadow-lg);
    inset: 0 54px 38px 0;
}

.story__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story__founder-card {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 290px;
    padding: 24px 26px;
    border-left: 3px solid var(--gold-500);
    background: var(--navy-900);
    box-shadow: var(--shadow-sm);
    color: var(--white);
    flex-direction: column;
}

.story__founder-card span {
    color: var(--gold-300);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.story__founder-card strong {
    margin: 4px 0;
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

.story__founder-card small {
    color: rgba(255,255,255,.63);
}

.story__content h2,
.standard h2,
.experience h2,
.branches h2 {
    font-size: clamp(42px, 4.2vw, 64px);
}

.story__lead {
    margin: 28px 0 16px;
    color: var(--navy-900);
    font-size: 19px;
    font-weight: 500;
}

.story__content > p:not(.eyebrow):not(.story__lead) {
    color: var(--slate-700);
}

.story blockquote {
    position: relative;
    margin: 34px 0 28px;
    padding: 20px 0 20px 54px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.story blockquote i {
    position: absolute;
    top: 18px;
    left: 0;
    color: var(--gold-500);
    font-size: 32px;
}

.story blockquote p {
    margin: 0;
    color: var(--navy-800);
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold-500);
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    color: var(--gold-600);
}

.story__milestones {
    display: grid;
    margin-top: 96px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
}

.story__milestones article {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
}

.story__milestones article + article {
    border-left: 1px solid var(--line);
}

.story__milestones span {
    color: var(--gold-500);
    font-family: Georgia, serif;
    font-size: 30px;
}

.story__milestones p,
.story__milestones strong {
    display: block;
    margin: 0;
}

.story__milestones p {
    color: var(--slate-500);
    font-size: 12px;
}

.story__milestones strong {
    color: var(--navy-900);
    font-size: 14px;
}

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

.section-heading,
.branches__header {
    display: grid;
    align-items: end;
    margin-bottom: 58px;
    grid-template-columns: 1.3fr .7fr;
    gap: 90px;
}

.section-heading h2,
.credibility h2,
.contact h2 {
    color: var(--white);
    font-size: clamp(42px, 4.6vw, 66px);
}

.section-heading > p,
.branches__header > p {
    margin: 0 0 6px;
    color: rgba(255,255,255,.65);
}

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

.service-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,.04);
    transition: transform .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease);
}

.service-card:hover {
    border-color: rgba(231,198,143,.45);
    background: rgba(255,255,255,.075);
    transform: translateY(-6px);
}

.service-card--image img,
.service-card__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.service-card--image img {
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.service-card--image:hover img {
    transform: scale(1.045);
}

.service-card__overlay {
    background: linear-gradient(180deg, rgba(7,24,37,.02) 12%, rgba(7,24,37,.94) 80%);
}

.service-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    min-height: 430px;
    padding: 28px;
    align-items: flex-start;
    flex-direction: column;
}

.service-card__number {
    margin-left: auto;
    color: rgba(255,255,255,.4);
    font-family: Georgia, serif;
    font-size: 14px;
}

.service-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-top: auto;
    border: 1px solid rgba(231,198,143,.42);
    border-radius: 50%;
    background: rgba(7,24,37,.25);
    color: var(--gold-300);
    font-size: 22px;
    place-items: center;
}

.service-card h3 {
    margin: 18px 0 8px;
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 400;
}

.service-card p {
    margin: 0 0 20px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-300);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.service-card--simple .service-card__content {
    background: linear-gradient(145deg, rgba(255,255,255,.055), transparent);
}

.standard {
    background: var(--ivory-50);
}

.standard__grid {
    display: grid;
    align-items: center;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.standard__content > p:not(.eyebrow) {
    margin: 26px 0;
    color: var(--slate-700);
    font-size: 17px;
}

.standard__list {
    margin: 30px 0 34px;
    padding: 0;
    list-style: none;
}

.standard__list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.standard__list li > span {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(199,152,79,.14);
    color: var(--gold-600);
    place-items: center;
}

.standard__list p,
.standard__list strong {
    display: block;
    margin: 0;
}

.standard__list p {
    color: var(--slate-500);
    font-size: 13px;
}

.standard__list strong {
    color: var(--navy-900);
    font-size: 15px;
}

.standard__visual {
    position: relative;
    min-height: 650px;
}

.standard__visual::before {
    position: absolute;
    top: -22px;
    right: -22px;
    width: 68%;
    height: 52%;
    border: 1px solid rgba(173,122,50,.24);
    border-radius: 0 150px 0 0;
    content: "";
}

.standard__visual img {
    position: absolute;
    width: calc(100% - 32px);
    height: calc(100% - 36px);
    object-fit: cover;
    border-radius: 18px 170px 18px 18px;
    box-shadow: var(--shadow-lg);
    inset: 0 32px 36px 0;
}

.standard__note {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    width: 250px;
    padding: 24px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    flex-direction: column;
}

.standard__note span {
    color: var(--gold-600);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.standard__note strong {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 400;
}

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

.credibility__image,
.credibility__scrim {
    position: absolute;
    inset: 0;
}

.credibility__image {
    background: url("/images/amathole-home/national-service.jpg") center/cover no-repeat;
}

.credibility__scrim {
    background: linear-gradient(90deg, rgba(7,24,37,.97) 0%, rgba(7,24,37,.86) 46%, rgba(7,24,37,.25) 100%);
}

.credibility__content {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 480px;
    align-items: center;
    grid-template-columns: .88fr 1.12fr;
    gap: 100px;
}

.credibility__intro {
    max-width: 560px;
}

.credibility__intro > p:last-child {
    margin: 28px 0 0;
    color: rgba(255,255,255,.7);
    font-size: 17px;
}

.credibility__stats {
    display: grid;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(7,24,37,.38);
    backdrop-filter: blur(10px);
    grid-template-columns: repeat(2, 1fr);
}

.credibility__stats article {
    display: flex;
    min-height: 180px;
    justify-content: center;
    padding: 34px;
    flex-direction: column;
}

.credibility__stats article:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.16);
}

.credibility__stats article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
}

.credibility__stats strong {
    color: var(--gold-300);
    font-family: Georgia, serif;
    font-size: clamp(40px, 4vw, 58px);
    font-weight: 400;
    line-height: 1;
}

.credibility__stats span {
    margin-top: 10px;
    color: rgba(255,255,255,.65);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

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

.experience__header {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.experience__header .eyebrow {
    justify-content: center;
}

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

.experience-card {
    display: flex;
    min-height: 360px;
    justify-content: flex-end;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--ivory-50);
    flex-direction: column;
}

.experience-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: auto;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--gold-600);
    font-size: 22px;
    place-items: center;
}

.experience-card h3 {
    margin: 28px 0 10px;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
}

.experience-card p {
    margin: 0;
    color: var(--slate-500);
    font-size: 14px;
}

.experience-card--quote {
    position: relative;
    justify-content: center;
    background: var(--navy-900);
    color: var(--white);
}

.experience-card--quote i {
    position: absolute;
    top: 22px;
    left: 24px;
    color: rgba(231,198,143,.4);
    font-size: 46px;
}

.experience-card--quote p {
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 24px;
    font-style: italic;
    line-height: 1.45;
}

.experience-card--quote span {
    margin-top: 22px;
    color: var(--gold-300);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.experience-card--image {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
}

.experience-card--image::after {
    position: absolute;
    background: linear-gradient(180deg, transparent 45%, rgba(7,24,37,.9));
    content: "";
    inset: 0;
}

.experience-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-card--image div {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 26px;
    left: 26px;
    display: flex;
    color: var(--white);
    flex-direction: column;
}

.experience-card--image span {
    color: var(--gold-300);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.experience-card--image strong {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
}

.plans {
    background: var(--ivory-100);
}

.section-heading--dark h2 {
    color: var(--navy-900);
}

.section-heading--dark > p {
    color: var(--slate-700);
}

.plans__grid {
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.plan-card {
    position: relative;
    display: flex;
    min-height: 570px;
    padding: 32px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: none;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.plan-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-6px);
}

.plan-card--featured {
    border-color: var(--navy-900);
    background: var(--navy-900);
    color: var(--white);
}

.plan-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--gold-500);
    color: var(--navy-950);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plan-card__eyebrow {
    margin: 0 0 14px;
    color: var(--gold-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.plan-card--featured .plan-card__eyebrow {
    color: var(--gold-300);
}

.plan-card h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 31px;
    font-weight: 400;
}

.plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 28px 0 22px;
}

.plan-card__price strong {
    font-size: 28px;
    font-weight: 700;
}

.plan-card__price span {
    color: var(--slate-500);
    font-size: 11px;
}

.plan-card--featured .plan-card__price span {
    color: rgba(255,255,255,.55);
}

.plan-card__rule {
    width: 100%;
    height: 1px;
    background: var(--line);
}

.plan-card--featured .plan-card__rule {
    background: rgba(255,255,255,.14);
}

.plan-card ul {
    margin: 24px 0 30px;
    padding: 0;
    list-style: none;
}

.plan-card li {
    display: flex;
    gap: 9px;
    margin: 0 0 12px;
    color: var(--slate-700);
    font-size: 12px;
}

.plan-card--featured li {
    color: rgba(255,255,255,.73);
}

.plan-card li i {
    color: var(--gold-600);
}

.plan-card--featured li i {
    color: var(--gold-300);
}

.plan-card__actions {
    display: flex;
    align-items: stretch;
    gap: 16px;
    margin-top: auto;
    flex-direction: column;
}

.plan-card__quote {
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: rgba(173,122,50,.5);
    text-underline-offset: 4px;
}

.plans__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 26px 0 0;
    color: var(--slate-500);
    font-size: 11px;
    text-align: center;
}

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

.branches__header h2 {
    color: var(--navy-900);
}

.branches__header > p {
    color: var(--slate-700);
}

.branch-search {
    display: grid;
    min-height: 72px;
    align-items: center;
    margin-bottom: 28px;
    padding: 0 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--ivory-50);
    grid-template-columns: auto 1fr auto;
    gap: 14px;
}

.branch-search > i {
    color: var(--gold-600);
    font-size: 20px;
}

.branch-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--navy-900);
    font-size: 15px;
}

.branch-search input::placeholder {
    color: var(--slate-500);
}

.branch-search > span {
    color: var(--slate-500);
    font-size: 11px;
}

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

.branch-card {
    display: flex;
    min-height: 330px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    flex-direction: column;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.branch-card:hover {
    border-color: rgba(173,122,50,.45);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.branch-card--extra:not(.is-visible) {
    display: none;
}

.branch-card[hidden] {
    display: none !important;
}

.branch-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.branch-card__top > span {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ivory-100);
    color: var(--gold-600);
    place-items: center;
}

.branch-card__top small {
    color: var(--slate-500);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.branch-card h3 {
    margin: 24px 0 8px;
    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
}

.branch-card address {
    min-height: 48px;
    margin: 0 0 18px;
    color: var(--slate-500);
    font-size: 12px;
    font-style: normal;
}

.branch-card__contact {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.branch-card__contact a {
    overflow: hidden;
    color: var(--slate-700);
    font-size: 11px;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.branch-card__contact i {
    width: 20px;
    color: var(--gold-600);
}

.branch-card__directions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--navy-900);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.branches__more {
    margin-top: 28px;
    text-align: center;
}

.branches__empty {
    margin: 30px 0 0;
    padding: 22px;
    border-radius: 12px;
    background: var(--ivory-100);
    color: var(--slate-700);
    text-align: center;
}

.contact {
    padding-top: 0;
    background: var(--white);
}

.contact__panel {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 500px;
    padding: 68px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 82% 10%, rgba(199,152,79,.18), transparent 28%),
        var(--navy-900);
    color: var(--white);
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
}

.contact__panel::before {
    position: absolute;
    right: -160px;
    bottom: -290px;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(231,198,143,.15);
    border-radius: 50%;
    content: "";
}

.contact__content,
.contact__details {
    position: relative;
    z-index: 1;
}

.contact__content > p:not(.eyebrow) {
    max-width: 610px;
    margin: 26px 0 32px;
    color: rgba(255,255,255,.7);
}

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

.contact__details {
    display: flex;
    justify-content: center;
    padding-left: 60px;
    border-left: 1px solid rgba(255,255,255,.14);
    flex-direction: column;
}

.contact__details article {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
}

.contact__details article + article {
    border-top: 1px solid rgba(255,255,255,.12);
}

.contact__details i {
    color: var(--gold-300);
    font-size: 23px;
}

.contact__details p,
.contact__details span,
.contact__details strong {
    display: block;
    margin: 0;
}

.contact__details span {
    color: var(--gold-300);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact__details strong {
    margin-top: 4px;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 400;
}

.site-footer {
    padding: 76px 0 24px;
    background: var(--navy-950);
    color: var(--white);
}

.site-footer__top {
    display: grid;
    padding-bottom: 56px;
    grid-template-columns: 1.4fr .65fr .75fr 1fr;
    gap: 74px;
}

.site-footer__brand img {
    width: 205px;
    height: auto;
    padding: 8px;
    border-radius: 8px;
    background: var(--white);
}

.site-footer__brand > p,
.site-footer__contact p {
    max-width: 310px;
    margin: 22px 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.site-footer h2 {
    margin: 0 0 22px;
    color: var(--gold-300);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.site-footer nav {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

.site-footer nav a,
.site-footer__phone {
    color: rgba(255,255,255,.77);
    font-size: 13px;
    text-decoration: none;
}

.site-footer nav a:hover,
.site-footer__phone:hover {
    color: var(--gold-300);
}

.site-footer__social {
    display: flex;
    gap: 10px;
}

.site-footer__social a {
    display: grid;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    color: var(--white);
    place-items: center;
}

.site-footer__phone {
    font-family: Georgia, serif;
    font-size: 25px;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.site-footer__bottom p {
    margin: 0;
    color: rgba(255,255,255,.45);
    font-size: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal--delay {
    transition-delay: .12s;
}

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

@media (max-width: 1199.98px) {
    .shell {
        width: min(100% - 40px, 1080px);
    }

    .hero__grid {
        grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
        gap: 40px;
    }

    .hero__image-caption {
        right: 0;
    }

    .story__grid,
    .standard__grid {
        gap: 64px;
    }

    .experience__grid,
    .plans__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__panel {
        gap: 50px;
    }

    .site-footer__top {
        gap: 40px;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 82px;
    }

    .section {
        padding: 90px 0;
    }

    .service-bar__inner {
        justify-content: center;
    }

    .service-bar p,
    .service-bar__fsp,
    .service-bar__links a span {
        display: none;
    }

    .service-bar__links {
        width: 100%;
        justify-content: space-between;
    }

    .navbar {
        min-height: 72px;
    }

    .navbar__inner {
        flex-wrap: wrap;
    }

    .navbar-brand img {
        width: 170px;
    }

    .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        order: 3;
        padding: 14px 0 24px;
        border-top: 1px solid var(--line);
        background: var(--white);
    }

    .nav-link {
        margin: 0;
        padding: 12px 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .navbar__login {
        margin: 12px 0 0;
    }

    .navbar__login .button {
        width: 100%;
    }

    .hero {
        padding-top: 56px;
    }

    .hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero__content {
        max-width: 760px;
        padding-bottom: 10px;
    }

    .hero__visual {
        min-height: 600px;
    }

    .hero__image-frame {
        inset: 0 0 0 80px;
    }

    .hero__trust-row {
        margin-top: 46px;
    }

    .hero__trust-row div {
        gap: 25px;
    }

    .story__grid,
    .standard__grid,
    .credibility__content,
    .contact__panel {
        grid-template-columns: 1fr;
    }

    .story__visual {
        min-height: 650px;
    }

    .services__grid,
    .branches__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading,
    .branches__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .section-heading > p,
    .branches__header > p {
        max-width: 700px;
    }

    .standard__content {
        max-width: 750px;
    }

    .credibility {
        min-height: auto;
    }

    .credibility__scrim {
        background: rgba(7,24,37,.84);
    }

    .credibility__content {
        gap: 48px;
    }

    .contact__panel {
        padding: 56px;
        gap: 42px;
    }

    .contact__details {
        padding: 25px 0 0;
        border-top: 1px solid rgba(255,255,255,.14);
        border-left: 0;
    }

    .site-footer__top {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .site-footer__contact {
        grid-column: 2 / -1;
    }
}

@media (max-width: 767.98px) {
    .shell {
        width: min(100% - 30px, 680px);
    }

    .section {
        padding: 74px 0;
    }

    .service-bar__links {
        gap: 14px;
        font-size: 11px;
    }

    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: clamp(43px, 12vw, 62px);
    }

    .hero__lead {
        font-size: 16px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__assurance {
        gap: 18px;
    }

    .hero__visual {
        min-height: 500px;
    }

    .hero__image-frame {
        border-radius: 160px 160px 16px 16px;
        inset: 0;
    }

    .hero__image-caption {
        right: 14px;
        bottom: 16px;
        width: min(280px, calc(100% - 28px));
    }

    .hero__seal {
        top: 24px;
        left: -4px;
        width: 96px;
        height: 96px;
    }

    .hero__trust-row {
        align-items: flex-start;
        padding: 26px 0;
        flex-direction: column;
    }

    .hero__trust-row div {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .story__visual {
        min-height: 490px;
        padding-right: 22px;
    }

    .story__portrait {
        border-radius: 14px 130px 14px 14px;
        inset: 0 22px 54px 0;
    }

    .story__founder-card {
        width: 270px;
    }

    .story__milestones {
        margin-top: 64px;
        grid-template-columns: 1fr;
    }

    .story__milestones article + article {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .services__grid,
    .experience__grid,
    .plans__grid,
    .branches__grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card__content {
        min-height: 390px;
    }

    .standard__visual {
        min-height: 510px;
    }

    .standard__visual img {
        border-radius: 14px 130px 14px 14px;
    }

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

    .credibility__stats article {
        min-height: 130px;
    }

    .credibility__stats article:nth-child(odd) {
        border-right: 0;
    }

    .credibility__stats article:not(:last-child) {
        border-bottom: 1px solid rgba(255,255,255,.16);
    }

    .experience-card {
        min-height: 300px;
    }

    .plan-card {
        min-height: 540px;
    }

    .branch-search {
        grid-template-columns: auto 1fr;
    }

    .branch-search > span {
        display: none;
    }

    .contact {
        padding-right: 0;
        padding-left: 0;
    }

    .contact__panel {
        width: 100%;
        padding: 48px 24px;
        border-radius: 0;
    }

    .contact__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-footer__top {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 479.98px) {
    .hero__assurance {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero__visual {
        min-height: 430px;
    }

    .story__visual {
        min-height: 410px;
    }

    .story__founder-card {
        width: calc(100% - 40px);
        padding: 19px 21px;
    }

    .standard__visual {
        min-height: 420px;
    }

    .standard__note {
        width: 220px;
        padding: 18px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

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