:root {
    --brand: #176b87;
    --accent: #22a699;
    --gold: #d6ae48;
    --ink: #18242b;
    --muted: #64727c;
    --paper: #ffffff;
    --soft: #eef4f5;
    --line: #d8e2e6;
    --footer-bg: #172026;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 4px clamp(20px, 6vw, 72px);
    background: var(--header-bg, #1A1A1A);
    border-bottom: 1px solid rgba(214, 174, 72, .42);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.brand img {
    width: min(360px, 42vw);
    height: 120px;
    object-fit: contain;
}

.brand strong {
    max-width: 240px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    padding: 0 14px;
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.main-nav a:hover {
    border-color: rgba(214, 174, 72, .78);
    background: rgba(214, 174, 72, .10);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
    transform: translateY(-1px);
}

.nav-toggle,
.submenu-toggle,
.mobile-quick-nav {
    display: none;
}

.main-nav .nav-cta {
    border-color: var(--gold);
    background: var(--gold);
    color: #171717;
    font-weight: 800;
}

.main-nav .nav-cta:hover {
    border-color: #f0cd70;
    background: #f0cd70;
    color: #111111;
}

.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 12px;
}

.nav-trigger::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 80;
    display: grid;
    min-width: 320px;
    gap: 6px;
    padding: 18px 10px 10px;
    border: 1px solid rgba(214, 174, 72, .36);
    border-radius: 8px;
    background: #111111;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

.dropdown-menu a {
    justify-content: flex-start;
    min-height: 34px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, .86);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(214, 174, 72, .12);
    color: #ffffff;
    box-shadow: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 62vh;
    display: grid;
    align-items: center;
    padding: 36px clamp(20px, 6vw, 72px);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .78)),
        var(--hero-image, linear-gradient(135deg, var(--soft), #ffffff));
    background-position: center;
    background-size: cover;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -34% -8%;
    z-index: -1;
    height: 58%;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background:
        linear-gradient(90deg, rgba(214, 174, 72, .16), rgba(255, 255, 255, .84) 42%, rgba(15, 59, 95, .12));
    transform: rotate(-1.8deg);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 78% 18%, rgba(214, 174, 72, .18), transparent 30%),
        linear-gradient(120deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
}

.hero-content {
    max-width: 720px;
    padding: 8px 0 34px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
}

.hero-ad {
    display: grid;
    gap: 12px;
    max-width: 390px;
    margin-left: auto;
    border: 1px solid rgba(214, 174, 72, .48);
    border-radius: 9px;
    padding: 7px;
    background: rgb(255 255 255 / 86%);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
    backdrop-filter: blur(6px);
}

.hero-ad span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-ad h2 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.16;
}

.hero-ad p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.hero-ad-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    width: fit-content;
    border: 1px solid rgba(37, 211, 102, .64);
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(37, 211, 102, .14);
    color: #ffffff;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.hero-ad-link:hover {
    border-color: rgba(37, 211, 102, .96);
    background: rgba(37, 211, 102, .24);
    transform: translateY(-1px);
}

.hero-ad-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.hero-ad-image-link,
.hero-ad-image {
    display: block;
    width: 100%;
}

.hero-ad-image-link {
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

.hero-ad-image-link img,
.hero-ad-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    border-radius: 8px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 780px;
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(26px, 3.5vw, 38px);
    line-height: 1.12;
}

h2 {
    margin: 0 0 16px;
    font-size: 34px;
}

h3 {
    margin: 0 0 10px;
}

p,
li {
    color: var(--muted);
    line-height: 1.7;
    text-align: justify;
    text-wrap: pretty;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 10px;
    border: 1px solid var(--brand);
    border-radius: 999px;
    padding: 0 20px;
    background: transparent;
    color: var(--brand);
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button:hover {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(23, 107, 135, .18);
    transform: translateY(-1px);
}

.icon-button {
    width: 46px;
    min-width: 46px;
    padding: 0;
    border-color: rgba(37, 211, 102, .5);
    background: #ffffff;
}

.icon-button img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

button {
    min-height: 42px;
    border: 1px solid var(--brand);
    border-radius: 999px;
    padding: 0 20px;
    background: var(--brand);
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

button:hover {
    box-shadow: 0 12px 28px rgba(23, 107, 135, .18);
    transform: translateY(-1px);
}

.section {
    padding: 27px clamp(20px, 6vw, 72px);
}

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

.service-grid article {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 36, 43, .07);
}

.service-grid article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-height: 38px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #151515;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.service-grid article h3 {
    margin: 0 0 10px;
    color: var(--ink);
}

.service-grid article p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    text-align: justify;
}

.service-grid article .text-link {
    margin-top: auto;
}

.home-modules-section {
    background: #ffffff;
}

.home-modules-stack {
    display: grid;
    gap: 22px;
}

.home-module-group {
    display: grid;
    gap: 12px;
}

.home-module-group-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.home-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 18px;
}

.home-module-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 36, 43, .07);
}

.home-module-media {
    margin-bottom: 14px;
}

.home-module-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    border-radius: 8px;
}

.home-module-content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 10px;
}

.home-module-content h2 {
    margin: 0;
    color: var(--ink);
}

.home-module-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    text-align: justify;
}

.home-module-content strong {
    display: block;
    color: var(--ink);
    line-height: 1.45;
}

.home-module-content .text-link {
    width: fit-content;
    margin-top: auto;
}
.contact-band {
    padding-top: 18px;
    padding-bottom: 27px;
    border-top: 1px solid rgba(214, 174, 72, .42);
    background:
        linear-gradient(180deg, rgb(203 203 203 / 16%), rgb(130 130 130 / 92%)),
        linear-gradient(359deg, rgba(23, 107, 135, .08), rgb(156 177 255 / 12%));
}

.contact-band h2 {
    margin-bottom: 8px;
}

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

.gallery-grid figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.gallery-grid figcaption {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 14px;
}

.page-hero {
    min-height: 124px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 21px clamp(20px, 6vw, 72px);
    background: #000000;
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.page-hero h1 {
    color: #ffffff;
}

.page-hero h1 {
    text-align: left;
    margin-bottom: 0;
}

.page-content {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto;
    padding: 42px 0 72px;
    color: var(--ink);
    line-height: 1.8;
    white-space: normal;
}

.page-content > * {
    max-width: 860px;
}

.page-content > .content-section,
.page-content > .content-columns,
.page-content > .content-media,
.page-content > .content-card-grid,
.page-content > .content-cta,
.page-content > .content-faq,
.page-content > .content-separator,
.page-content > .content-image {
    max-width: none;
}

.page-content .text-left {
    text-align: left;
}

.page-content .text-center {
    text-align: center;
}

.page-content .text-right {
    text-align: right;
}

.page-content .text-justify {
    text-align: justify;
}

.page-content .font-sans {
    font-family: Arial, Helvetica, sans-serif;
}

.page-content .font-serif {
    font-family: Georgia, 'Times New Roman', serif;
}

.page-content .font-elegant {
    font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif;
    font-weight: 600;
}

.page-content .font-mono {
    font-family: 'Courier New', monospace;
}

.page-content h2,
.page-content h3,
.page-content .content-kicker,
.main-nav,
.site-footer {
    text-align: initial;
}

.button,
.page-content .content-button,
button {
    text-align: center;
}

.page-content .content-section {
    margin: 28px 0;
    border-left: 4px solid var(--gold);
    padding: 8px 0 8px 22px;
}

.page-content .content-section-soft {
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 24px;
    background: #f7fafb;
}

.page-content .content-section-dark {
    border-radius: 8px;
    padding: 28px;
    background: #151515;
    color: #ffffff;
}

.page-content .content-section-dark p,
.page-content .content-section-dark h2,
.page-content .content-section-dark h3 {
    color: #ffffff;
}

.page-content .content-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.page-content .content-highlight {
    margin: 28px 0;
    border-left: 4px solid var(--gold);
    padding: 18px 22px;
    background: linear-gradient(90deg, rgba(214, 174, 72, .14), rgba(255, 255, 255, 0));
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
}

.page-content .content-highlight p {
    margin: 0;
    color: var(--ink);
}

.page-content .content-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 28px 0;
}

.page-content .content-columns > div,
.page-content .content-note {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
}

.page-content .content-media {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 28px;
    align-items: center;
    margin: 32px 0;
}

.page-content .content-media.image-left {
    grid-template-columns: .9fr 1fr;
}

.page-content .content-media.image-left .content-image {
    order: -1;
}

.page-content .content-card-grid,
.page-content .content-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0;
}

.page-content .content-card,
.page-content .content-feature {
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 36, 43, .07);
}

.page-content .content-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin: 34px 0;
    border-radius: 8px;
    padding: 28px;
    background: #151515;
    color: #ffffff;
}

.page-content .content-cta h2,
.page-content .content-cta p {
    color: #ffffff;
}

.page-content .content-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    white-space: nowrap;
    border: 1px solid var(--gold);
    border-radius: 999px;
    padding: 0 18px;
    background: var(--gold);
    color: #151515;
    text-decoration: none;
    font-weight: 800;
}

.page-content .content-separator {
    height: 1px;
    margin: 34px 0;
    border: 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-content .content-faq {
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

.page-content .content-image {
    margin: 22px 0;
}

.page-content .content-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    border-radius: 8px;
    object-fit: cover;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    width: 54px;
    min-height: 54px;
    border: 1px solid rgba(6, 45, 23, .12);
    border-radius: 999px;
    justify-content: center;
    padding: 0;
    background: rgba(37, 211, 102, .94);
    color: #062d17;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 22px;
    align-items: start;
}

.contact-grid > div p {
    margin-bottom: 8px;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.whatsapp-link {
    width: fit-content;
    gap: 10px;
    border-color: rgba(37, 211, 102, .56);
    background: #ffffff;
    color: #0f4c2b;
}

.whatsapp-link:hover {
    border-color: rgba(37, 211, 102, .92);
    background: rgba(37, 211, 102, .12);
    color: #07351c;
}

.whatsapp-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.office-list {
    display: grid;
    gap: 12px;
}

.office-list h3 {
    margin-bottom: 2px;
}

.office-list article {
    display: grid;
    gap: 4px;
    border-left: 2px solid rgba(214, 174, 72, .74);
    padding-left: 14px;
}

.office-list strong {
    color: var(--ink);
}

.office-list span {
    color: #3f505a;
    line-height: 1.45;
}

.office-list a {
    color: var(--brand);
    font-weight: 800;
    text-decoration: none;
}

.office-list a:hover {
    text-decoration: underline;
}

.contact-form {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(23, 107, 135, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px rgba(23, 32, 38, .08);
}

.contact-form h3 {
    margin-bottom: 2px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: #31434d;
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    color: var(--ink);
    font: inherit;
}

.contact-form textarea {
    min-height: 112px;
}

.site-notice,
.site-alert {
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 700;
}

.site-notice {
    border: 1px solid #9bd0bd;
    background: #effaf5;
    color: #176b50;
}

.site-alert {
    border: 1px solid #f2b8a2;
    background: #fff2ec;
    color: #83391f;
}

.site-alert p {
    margin: 0;
    color: inherit;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, .9fr) auto minmax(0, 1fr) minmax(0, .9fr);
    align-items: center;
    gap: 28px;
    padding: 28px clamp(20px, 6vw, 72px);
    background: #000000;
    color: #ffffff;
    font-size: 14px;
}

.site-footer a,
.site-footer span,
.site-footer strong {
    color: rgba(255, 255, 255, .86);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.footer-links,
.footer-locations,
.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-brand {
    display: grid;
    justify-items: center;
}

.footer-brand img {
    width: min(280px, 32vw);
    max-height: 92px;
    object-fit: contain;
}

.footer-contact {
    justify-items: end;
    text-align: right;
}

.footer-locations {
    justify-items: start;
    text-align: left;
}

.footer-locations strong,
.footer-contact strong {
    color: #ffffff;
    font-size: 15px;
}

@media (max-width: 760px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 8px;
        padding: 8px 14px 10px;
    }

    .site-footer {
        display: grid;
    }

    .brand img {
        width: min(238px, 68vw);
        height: 72px;
    }

    .brand strong {
        max-width: 180px;
        font-size: 13px;
    }

    .main-nav {
        display: none;
    }

    .mobile-quick-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
        gap: 7px;
        width: 100%;
    }

    .mobile-quick-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        border: 1px solid rgba(214, 174, 72, .54);
        border-radius: 999px;
        padding: 0 8px;
        background: rgba(255, 255, 255, .055);
        color: rgba(255, 255, 255, .92);
        text-decoration: none;
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-quick-nav a:focus,
    .mobile-quick-nav a:hover {
        border-color: var(--gold);
        background: rgba(214, 174, 72, .12);
        color: #ffffff;
    }

    .main-nav a {
        min-height: 34px;
        padding: 0 11px;
        font-size: 12px;
    }

    .nav-dropdown {
        display: grid;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        padding: 5px 0 0 12px;
        border: 0;
        border-left: 1px solid rgba(214, 174, 72, .36);
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .dropdown-menu a {
        white-space: normal;
    }

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

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

    .hero-content {
        padding-bottom: 12px;
    }

    .hero-ad {
        width: 100%;
        max-width: none;
        margin-left: 0;
    }

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

    .page-content .content-columns,
    .page-content .content-media,
    .page-content .content-card-grid,
    .page-content .content-feature-grid {
        grid-template-columns: 1fr;
    }

    .page-content .content-media.image-left .content-image {
        order: 0;
    }

    .page-content .content-cta {
        display: grid;
    }

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

    .site-footer {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .footer-brand img {
        width: min(260px, 72vw);
    }

    .footer-locations,
    .footer-contact {
        justify-items: start;
        text-align: left;
    }
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.blog-card {
    position: relative;
    display: flex;
    min-height: 100%;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(24, 36, 43, .08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 174, 72, .72);
    box-shadow: 0 20px 38px rgba(24, 36, 43, .12);
}

.blog-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #111111;
}

.blog-card-placeholder {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #111827, #05070b);
    color: var(--gold);
}

.blog-card-placeholder span {
    border: 1px solid rgba(214, 174, 72, .48);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
}

.blog-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.blog-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.25;
}

.blog-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.6;
    text-align: justify;
}

.blog-card .text-link {
    width: fit-content;
    margin-top: auto;
    border: 1px solid rgba(214, 174, 72, .72);
    border-radius: 999px;
    padding: 9px 14px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.blog-card .text-link:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #ffffff;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.home-path-section {
    background: #ffffff;
}

.home-path-section > h2 {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.home-path-section > .eyebrow {
    text-align: center;
}

.home-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.home-path-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(24, 36, 43, .07);
}

.home-path-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-height: 38px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #151515;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
}

.home-path-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
}

.home-path-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.65;
    text-align: justify;
}

.home-path-card strong {
    display: block;
    margin-bottom: 16px;
    color: var(--ink);
    line-height: 1.45;
}

.home-path-card .text-link {
    margin-top: auto;
}

@media (max-width: 980px) {
    .home-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-path-grid {
        grid-template-columns: 1fr;
    }
}

.plan-start-section {
    background: #ffffff;
}

.plan-start-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.plan-start-summary {
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 26px;
    background: #151515;
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(24, 36, 43, .12);
}

.plan-start-summary h2,
.plan-start-summary p,
.plan-start-summary li {
    color: #ffffff;
}

.plan-start-summary strong {
    display: block;
    margin: 18px 0;
    color: var(--gold);
    font-size: 26px;
    line-height: 1.2;
}

.plan-start-summary ul {
    padding-left: 20px;
    line-height: 1.8;
}

.plan-start-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.plan-start-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.plan-start-actions button,
.plan-start-actions .content-button {
    width: auto;
    min-height: 42px;
}

.secondary-payment {
    background: #ffffff;
    color: #151515;
}

.form-hint {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 860px) {
    .plan-start-layout,
    .plan-start-fields {
        grid-template-columns: 1fr;
    }
}
