:root {
    --ink: #10181d;
    --ink-soft: #1a252b;
    --ink-muted: #506067;
    --ivory: #f8f5ee;
    --sand: #eee9df;
    --paper: #fffdf9;
    --white: #ffffff;
    --gold: #b6975c;
    --gold-dark: #80683e;
    --line: rgba(16, 24, 29, 0.14);
    --line-light: rgba(255, 255, 255, 0.16);
    --error: #a52a2a;
    --success: #2d7049;
    --shadow: 0 24px 60px rgba(16, 24, 29, 0.12);
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 28px;
    --container: 1220px;
    --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid #d8b872;
    outline-offset: 4px;
}

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

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

h1 {
    font-size: clamp(2.9rem, 10vw, 5.8rem);
}

h2 {
    font-size: clamp(2.15rem, 6.5vw, 4rem);
}

h3 {
    line-height: 1.25;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    transform: translateY(-180%);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--white);
    font-weight: 750;
}

.skip-link:focus {
    transform: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.8rem;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: #dcc58f;
}

.button {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.35rem;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    background: #27343b;
}

.button--small {
    min-height: 2.65rem;
    padding: 0.55rem 1rem;
    font-size: 0.7rem;
}

.button--wide {
    width: 100%;
}

.button--light {
    border-color: var(--paper);
    color: var(--ink);
    background: var(--paper);
}

.button--light:hover {
    color: var(--white);
    background: transparent;
}

.button--ghost {
    color: var(--ink);
    background: transparent;
}

.button--ghost:hover {
    color: var(--white);
    background: var(--ink);
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span,
.card-link span {
    transition: transform 180ms ease;
}

.text-link:hover span,
.card-link:hover span {
    transform: translate(3px, -3px);
}

.text-link--light {
    color: var(--white);
}

.dev-warning {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2b44c;
    color: #5f460d;
    background: #fff4ce;
    font-size: 0.82rem;
    text-align: center;
}

.site-header {
    position: relative;
    z-index: 100;
    color: var(--ink);
    background: var(--paper);
}

.topbar {
    display: none;
    color: #d8dedd;
    background: var(--ink);
    font-size: 0.72rem;
}

.topbar__inner,
.topbar__contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.topbar__inner {
    min-height: 2.4rem;
}

.topbar a {
    text-decoration: none;
}

.topbar a:hover {
    color: var(--white);
}

.nav-shell {
    display: flex;
    min-height: 5rem;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--ink);
    text-decoration: none;
}

.brand__mark {
    position: relative;
    display: grid;
    width: 2.45rem;
    height: 2.45rem;
    place-items: center;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark i::before,
.brand__mark i::after {
    position: absolute;
    width: 0.43rem;
    height: 0.43rem;
    border: 1px solid var(--gold);
    content: "";
}

.brand__mark::before {
    top: 0.38rem;
    left: 0.38rem;
}

.brand__mark::after {
    right: 0.38rem;
    bottom: 0.38rem;
}

.brand__mark i::before {
    top: 0.38rem;
    right: 0.38rem;
}

.brand__mark i::after {
    bottom: 0.38rem;
    left: 0.38rem;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__text strong {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.brand__text small {
    margin-top: 0.3rem;
    color: var(--gold-dark);
    font-size: 0.61rem;
    font-weight: 850;
    letter-spacing: 0.34em;
}

.menu-toggle {
    display: inline-flex;
    min-width: 3rem;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 0;
    color: var(--ink);
    background: transparent;
}

.menu-toggle__label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
    display: block;
    width: 1.3rem;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
}

.menu-toggle__bars {
    position: relative;
}

.menu-toggle__bars::before {
    position: absolute;
    top: -0.38rem;
}

.menu-toggle__bars::after {
    position: absolute;
    top: 0.38rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.primary-nav {
    position: fixed;
    inset: 5rem 0 0;
    z-index: 90;
    display: none;
    overflow-y: auto;
    padding: 2rem 1rem;
    color: var(--white);
    background: var(--ink);
}

.primary-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.primary-nav > a,
.nav-dropdown > summary {
    min-height: 3.4rem;
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--line-light);
    font-size: 1rem;
    font-weight: 650;
    text-decoration: none;
}

.nav-dropdown > summary {
    cursor: pointer;
}

.nav-dropdown__menu {
    display: grid;
    gap: 0.5rem;
    padding: 0.75rem 0;
}

.nav-dropdown__menu a {
    display: block;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.nav-dropdown__menu strong,
.nav-dropdown__menu small {
    display: block;
}

.nav-dropdown__menu small {
    margin-top: 0.2rem;
    color: #bbc4c5;
    font-size: 0.72rem;
}

.primary-nav .button {
    margin-top: 1.25rem;
    border-color: var(--gold);
    background: var(--gold-dark);
}

.mobile-whatsapp {
    color: #c8e6cf;
}

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

.hero__media,
.hero__veil {
    position: absolute;
    inset: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
}

.hero__veil {
    background:
        linear-gradient(90deg, rgba(9, 16, 20, 0.94) 0%, rgba(9, 16, 20, 0.77) 55%, rgba(9, 16, 20, 0.36) 100%),
        linear-gradient(0deg, rgba(9, 16, 20, 0.52), transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 650px;
    align-items: center;
    gap: 2.5rem;
    padding-block: 5rem 3.5rem;
}

.hero__copy h1 {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.hero__copy > p:not(.hero__disclaimer) {
    max-width: 650px;
    color: #e6e8e6;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero__actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.hero__disclaimer {
    margin-top: 2rem;
    color: #b7c0c0;
    font-size: 0.72rem;
}

.hero__form {
    max-width: 470px;
}

.quick-quote {
    display: grid;
    gap: 0.85rem;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow);
}

.quick-quote__head {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.15rem;
}

.quick-quote__head span {
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.quick-quote__head strong {
    font-family: var(--font-display);
    font-size: 1.65rem;
}

.quick-quote__row {
    display: grid;
    grid-template-columns: 1fr 0.75fr;
    gap: 0.8rem;
}

.quick-quote small {
    display: block;
    margin-top: -0.1rem;
    color: var(--ink-muted);
    text-align: center;
}

.hero__facts {
    position: relative;
    z-index: 2;
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__facts span {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.hero__facts small {
    display: block;
    margin-bottom: 0.15rem;
    color: #c4cccb;
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trust-strip {
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.trust-strip span {
    display: flex;
    min-height: 4.6rem;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 0.5rem;
    color: #344148;
    font-size: 0.72rem;
    font-weight: 700;
}

.trust-strip i {
    width: 0.48rem;
    height: 0.48rem;
    flex: 0 0 auto;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.section {
    padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section--sand {
    background: var(--sand);
}

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

.section-heading {
    max-width: 760px;
    margin-bottom: 2.8rem;
}

.section-heading h2 {
    margin-bottom: 1.1rem;
}

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

.section-heading--split {
    max-width: none;
}

.service-grid {
    display: grid;
    gap: 1rem;
}

.service-card {
    position: relative;
    min-height: 280px;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
    position: absolute;
    right: -3rem;
    bottom: -4rem;
    width: 9rem;
    height: 9rem;
    border: 1px solid rgba(182, 151, 92, 0.28);
    transform: rotate(45deg);
    content: "";
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(16, 24, 29, 0.09);
}

.service-card__index {
    color: var(--gold-dark);
    font-family: var(--font-display);
    font-size: 0.85rem;
}

.service-card h3 {
    max-width: 260px;
    margin: 3.4rem 0 0.8rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
}

.service-card h3 a {
    text-decoration: none;
}

.service-card p {
    max-width: 340px;
    color: var(--ink-muted);
    font-size: 0.9rem;
}

.service-card .card-link {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
}

.split-feature {
    display: grid;
    gap: 3rem;
}

.split-feature__image {
    position: relative;
}

.split-feature__image img {
    width: 100%;
    aspect-ratio: 4 / 4.7;
    border-radius: var(--radius);
}

.image-note {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    left: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: rgba(255, 253, 249, 0.94);
    font-size: 0.75rem;
    font-weight: 700;
}

.image-note span {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
    font-family: var(--font-display);
}

.split-feature__copy {
    align-self: center;
}

.split-feature__copy > p {
    color: #c9d0d0;
}

.feature-list {
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: grid;
    gap: 0.15rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line-light);
}

.feature-list strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
}

.feature-list span {
    color: #acb7b7;
    font-size: 0.85rem;
}

.route-grid {
    display: grid;
    gap: 1rem;
}

.route-card {
    padding: 1.35rem;
    border-top: 1px solid var(--line);
}

.route-card > span {
    color: var(--gold-dark);
    font-family: var(--font-display);
    font-size: 0.8rem;
}

.route-card h3 {
    margin: 2rem 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
}

.route-card p {
    color: var(--ink-muted);
    font-size: 0.88rem;
}

.fleet-preview {
    display: grid;
    gap: 1.2rem;
}

.fleet-preview__card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
}

.fleet-preview__card img {
    width: 100%;
    aspect-ratio: 3 / 2;
}

.fleet-preview__card > div {
    padding: 1.25rem;
}

.fleet-preview__card h3 {
    margin-bottom: 0.45rem;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
}

.fleet-preview__card p {
    color: var(--ink-muted);
    font-size: 0.86rem;
}

.steps {
    display: grid;
}

.steps article {
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
}

.steps article > span {
    color: var(--gold-dark);
    font-family: var(--font-display);
}

.steps h3 {
    margin: 1.5rem 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 500;
}

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

.section--image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.section-image {
    position: absolute;
    inset: 0;
}

.section-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 18, 22, 0.85), rgba(11, 18, 22, 0.22));
    content: "";
}

.section-image img {
    width: 100%;
    height: 100%;
}

.image-panel-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 520px;
    align-items: center;
}

.image-panel {
    max-width: 590px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(16, 24, 29, 0.86);
    backdrop-filter: blur(12px);
}

.image-panel p {
    color: #d0d6d5;
}

.simple-checks {
    display: grid;
    gap: 0.5rem;
    margin: 1.5rem 0 2rem;
    padding: 0;
    list-style: none;
}

.simple-checks li::before {
    margin-right: 0.6rem;
    color: #dcc58f;
    content: "◇";
}

.relationship {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.relationship__stamp {
    display: grid;
    width: min(100%, 300px);
    aspect-ratio: 1;
    place-items: center;
    align-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--paper);
    box-shadow: inset 0 0 0 12px var(--ivory), inset 0 0 0 13px var(--gold);
    text-align: center;
}

.relationship__stamp span,
.relationship__stamp small {
    color: var(--gold-dark);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.relationship__stamp strong {
    display: block;
    margin: 0.35rem;
    font-family: var(--font-display);
    font-size: 5.4rem;
    font-weight: 400;
    line-height: 0.9;
}

.faq-layout {
    display: grid;
    gap: 2rem;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border: 0;
    background: transparent;
    font-family: var(--font-display);
    font-size: 1.15rem;
    text-align: left;
    cursor: pointer;
}

.faq-item button i {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 auto;
}

.faq-item button i::before,
.faq-item button i::after {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--ink);
    content: "";
    transition: transform 160ms ease;
}

.faq-item button i::after {
    transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
    transform: rotate(0);
}

.faq-answer {
    padding: 0 2.2rem 1.4rem 0;
    color: var(--ink-muted);
}

.section--cta {
    padding-block: 0;
    background: var(--ivory);
}

.cta-panel {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 2.2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    color: var(--white);
    background: var(--ink-soft);
}

.cta-panel h2 {
    margin-bottom: 0.75rem;
}

.cta-panel p {
    max-width: 680px;
    margin-bottom: 0;
    color: #c7cecd;
}

.breadcrumbs {
    padding-top: 1rem;
}

.breadcrumbs ol {
    display: flex;
    overflow-x: auto;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--ink-muted);
    font-size: 0.72rem;
}

.breadcrumbs li:not(:last-child)::after {
    color: var(--gold-dark);
    content: "›";
}

.breadcrumbs a {
    text-decoration: none;
}

.page-hero {
    padding-block: 3rem 4rem;
}

.page-hero__grid {
    display: grid;
    gap: 2.5rem;
}

.page-hero__copy {
    align-self: center;
}

.page-hero__copy h1 {
    margin-bottom: 1.5rem;
}

.page-hero__copy > p {
    max-width: 680px;
    color: var(--ink-muted);
    font-size: 1.08rem;
}

.page-hero__actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.page-hero__media {
    position: relative;
    margin: 0;
}

.page-hero__media img {
    width: 100%;
    aspect-ratio: 4 / 3.6;
    border-radius: var(--radius);
}

.page-hero__media figcaption {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    color: var(--white);
    background: rgba(16, 24, 29, 0.82);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.simple-hero {
    padding-block: clamp(4rem, 9vw, 7.5rem);
}

.simple-hero .container {
    max-width: 980px;
}

.simple-hero h1 {
    margin-bottom: 1.5rem;
}

.simple-hero p {
    max-width: 720px;
    color: var(--ink-muted);
    font-size: 1.1rem;
}

.simple-hero--compact {
    padding-block: 3rem 4.5rem;
}

.content-intro {
    display: grid;
    gap: 2.5rem;
}

.content-intro p,
.prose p,
.standard-content p {
    color: var(--ink-muted);
    font-size: 1.02rem;
}

.benefit-panel {
    margin: 0;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--ink);
    list-style: none;
}

.benefit-panel li {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line-light);
}

.benefit-panel li:last-child {
    border-bottom: 0;
}

.benefit-panel li::before {
    margin-right: 0.65rem;
    color: #dcc58f;
    content: "◇";
}

.article-split {
    display: grid;
    gap: 2rem;
}

.article-split h2 {
    max-width: 580px;
}

.event-facts {
    display: grid;
    gap: 2rem;
}

.event-facts dl {
    margin: 0;
}

.event-facts dl div {
    padding: 1rem 0;
    border-top: 1px solid var(--line-light);
}

.event-facts dt {
    color: #aeb8b8;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-facts dd {
    margin: 0.25rem 0 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.event-facts > p {
    color: #aeb8b8;
    font-size: 0.8rem;
}

.form-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.form-layout__intro {
    position: static;
}

.promise-card {
    margin-top: 2rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 253, 249, 0.55);
}

.promise-card strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.promise-card ol,
.promise-card p {
    margin-bottom: 0;
    color: var(--ink-muted);
    font-size: 0.86rem;
}

.quote-form,
.contact-form {
    padding: clamp(1.2rem, 4vw, 2.25rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 16px 50px rgba(16, 24, 29, 0.07);
}

.quote-form fieldset {
    margin: 0;
    padding: 2rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.quote-form fieldset:first-of-type {
    padding-top: 0.4rem;
}

.quote-form legend {
    width: 100%;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.quote-form legend span {
    margin-right: 0.6rem;
    color: var(--gold-dark);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 800;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.field {
    min-width: 0;
}

.field label,
.field-label {
    display: block;
    margin-bottom: 0.42rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.025em;
}

.field label span,
.field-label span {
    color: var(--ink-muted);
    font-weight: 500;
}

.field input:not([type="radio"], [type="checkbox"]),
.field select,
.field textarea {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.72rem 0.8rem;
    border: 1px solid #c7c5be;
    border-radius: var(--radius-sm);
    background: var(--white);
    transition: border 150ms ease, box-shadow 150ms ease;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold-dark);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(182, 151, 92, 0.18);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--error);
}

.field-error {
    display: block;
    margin-top: 0.35rem;
    color: var(--error);
    font-size: 0.74rem;
    font-weight: 650;
}

.radio-row {
    display: flex;
    gap: 1rem;
}

.radio-row label {
    display: flex;
    min-height: 3rem;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.6rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.return-fields[hidden] {
    display: none;
}

.consent-field label {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 500;
}

.consent-field input {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    margin-top: 0.2rem;
}

.form-submit {
    display: grid;
    gap: 0.8rem;
    padding-top: 1.5rem;
}

.form-submit p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.75rem;
}

.turnstile-wrap {
    display: grid;
    gap: 0.45rem;
    margin-top: 1.5rem;
    overflow: hidden;
}

.turnstile-wrap p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.72rem;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
}

.alert--error {
    border: 1px solid #dfa6a6;
    color: #782121;
    background: #fff0f0;
}

.number-list {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.number-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.number-list li > span {
    display: grid;
    width: 2rem;
    height: 2rem;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-display);
}

.number-list p {
    margin: 0;
    color: var(--ink-muted);
    font-size: 0.82rem;
}

.fleet-grid {
    display: grid;
    gap: 1.5rem;
}

.fleet-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.fleet-card__image {
    position: relative;
}

.fleet-card__image img {
    width: 100%;
    aspect-ratio: 3 / 2;
}

.fleet-card__image > span {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(16, 24, 29, 0.85);
    font-family: var(--font-display);
}

.fleet-card__body {
    padding: 1.5rem;
}

.fleet-card__body h2 {
    font-size: 2rem;
}

.fleet-card__body > p {
    color: var(--ink-muted);
}

.fleet-card dl {
    margin: 1.2rem 0;
}

.fleet-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
}

.fleet-card dt {
    font-weight: 800;
}

.fleet-card dd {
    margin: 0;
    color: var(--ink-muted);
    text-align: right;
}

.fleet-note {
    margin-top: 2rem;
    padding: 1.2rem;
    border-left: 3px solid var(--gold);
    background: var(--paper);
}

.fleet-note p {
    margin: 0.25rem 0 0;
    color: var(--ink-muted);
    font-size: 0.82rem;
}

.standard-content {
    max-width: 900px;
}

.standard-content > article {
    display: grid;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
}

.standard-content > article > span {
    color: var(--gold-dark);
    font-family: var(--font-display);
}

.standard-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.independent-note {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
}

.independent-note p {
    margin: 0.4rem 0 0;
    font-size: 0.85rem;
}

.contact-layout {
    display: grid;
    gap: 2.5rem;
}

.contact-details dl {
    margin: 2rem 0;
}

.contact-details dl div {
    padding: 0.9rem 0;
    border-top: 1px solid var(--line);
}

.contact-details dt {
    color: var(--ink-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-details dd {
    margin: 0.25rem 0 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.small-note {
    color: var(--ink-muted);
    font-size: 0.78rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form h2 {
    margin-bottom: 0.6rem;
}

.faq-page {
    display: grid;
    gap: 2.5rem;
}

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

.legal-layout {
    display: grid;
    gap: 2rem;
}

.legal-layout > aside {
    padding: 1.2rem;
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    background: var(--paper);
}

.legal-layout > aside p {
    color: var(--ink-muted);
    font-size: 0.8rem;
}

.legal-copy section {
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
}

.legal-copy h2 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 750;
    letter-spacing: -0.015em;
}

.legal-copy p {
    color: var(--ink-muted);
}

.legal-data {
    margin: 0;
}

.legal-data div {
    display: grid;
    gap: 0.25rem;
    padding: 0.7rem 0;
    border-top: 1px solid var(--line);
}

.legal-data dt {
    font-weight: 750;
}

.legal-data dd {
    margin: 0;
    color: var(--ink-muted);
}

.guide-grid {
    display: grid;
    gap: 1.5rem;
}

.guide-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
}

.guide-card__image {
    display: block;
    overflow: hidden;
}

.guide-card__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    transition: transform 400ms ease;
}

.guide-card:hover .guide-card__image img {
    transform: scale(1.025);
}

.guide-card > div {
    padding: 1.35rem;
}

.guide-card > div > span {
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.guide-card h2 {
    margin: 0.8rem 0;
    font-size: 1.8rem;
}

.guide-card h2 a {
    text-decoration: none;
}

.guide-card p {
    color: var(--ink-muted);
    font-size: 0.88rem;
}

.article-header {
    padding-block: 3rem 4rem;
}

.article-header__inner {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.article-header h1 {
    max-width: 850px;
}

.article-header p {
    max-width: 700px;
    color: var(--ink-muted);
    font-size: 1.1rem;
}

.article-header img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 0.68rem;
}

.article-layout {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 7rem;
}

.article-aside {
    align-self: start;
    padding: 1.2rem;
    border-top: 3px solid var(--gold);
    background: var(--sand);
}

.article-aside p {
    color: var(--ink-muted);
    font-size: 0.8rem;
}

.article-body {
    max-width: 790px;
}

.article-body > section {
    padding: 0 0 2.5rem;
}

.article-body h2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.article-body p,
.article-body li {
    color: #405057;
    font-size: 1.02rem;
}

.article-body li + li {
    margin-top: 0.5rem;
}

.article-sources {
    margin-top: 1rem;
    padding-top: 2.5rem !important;
    border-top: 1px solid var(--line);
}

.article-sources li {
    display: grid;
    gap: 0.15rem;
}

.article-sources a {
    color: var(--ink);
    font-weight: 750;
}

.article-sources span {
    color: var(--ink-muted);
    font-size: 0.82rem;
}

.article-cta {
    margin-top: 2rem;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border-radius: var(--radius);
    background: var(--sand);
}

.article-cta p {
    font-size: 0.95rem;
}

.status-page {
    display: grid;
    min-height: 70vh;
    place-items: center;
    padding-block: 5rem;
    text-align: center;
}

.status-page .container {
    max-width: 760px;
}

.status-page h1 {
    font-size: clamp(2.5rem, 8vw, 4.8rem);
}

.status-page p {
    color: var(--ink-muted);
    font-size: 1.05rem;
}

.status-icon {
    display: grid;
    width: 4rem;
    height: 4rem;
    place-items: center;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--success);
    font-size: 1.7rem;
}

.status-code {
    display: block;
    color: rgba(182, 151, 92, 0.35);
    font-family: var(--font-display);
    font-size: clamp(5rem, 20vw, 11rem);
    line-height: 0.8;
}

.status-page__actions,
.status-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.status-links a {
    padding: 0.65rem;
    font-weight: 700;
}

.footer-cta {
    color: var(--white);
    background: var(--gold-dark);
}

.footer-cta__inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    padding-block: 2.5rem;
}

.footer-cta__inner > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-cta .eyebrow {
    margin-bottom: 0.55rem;
    color: var(--white);
}

.footer-cta h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 6vw, 3rem);
}

.footer-cta__actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}

.footer-cta__actions .button,
.cta-panel > .button {
    margin: 0;
    align-self: center;
}

.site-footer {
    color: #dbe0df;
    background: var(--ink);
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    padding-block: 4rem;
}

.brand--footer {
    color: var(--white);
}

.footer-brand p {
    max-width: 360px;
    margin-top: 1.5rem;
    color: #aeb8b8;
    font-size: 0.85rem;
}

.location-chip {
    display: inline-flex;
    padding: 0.4rem 0.7rem;
    border: 1px solid var(--line-light);
    border-radius: 999px;
    color: #c4cccc;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid h3 {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li {
    margin-bottom: 0.55rem;
    color: #aeb8b8;
    font-size: 0.82rem;
}

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

.footer-grid a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding-block: 1rem;
    border-top: 1px solid var(--line-light);
    color: #8f9b9b;
    font-size: 0.7rem;
}

.footer-disclaimer p {
    margin: 0;
}

.footer-legal {
    color: #8f9b9b;
    background: #0b1216;
}

.footer-legal__inner {
    display: grid;
    gap: 1rem;
    padding-block: 1.4rem;
    font-size: 0.68rem;
}

.footer-legal p {
    margin: 0;
}

.footer-legal nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
}

.footer-legal a {
    color: #c1c9c8;
}

.footer-legal button {
    padding: 0;
    border: 0;
    color: #c1c9c8;
    background: transparent;
    font: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    cursor: pointer;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1000;
    max-width: 720px;
    margin-left: auto;
    padding: 1.15rem;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner p {
    margin: 0.25rem 0 1rem;
    color: #c8cfce;
    font-size: 0.78rem;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.cookie-banner__actions a {
    font-size: 0.72rem;
}

@media (min-width: 640px) {
    .topbar {
        display: block;
    }

    .primary-nav {
        inset-block-start: 7.4rem;
    }

    .hero__actions,
    .page-hero__actions,
    .footer-cta__actions {
        align-items: center;
        flex-direction: row;
    }

    .hero__facts {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__facts span {
        padding: 1.2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.18);
        border-bottom: 0;
    }

    .trust-strip__inner {
        grid-template-columns: repeat(4, 1fr);
    }

    .service-grid,
    .route-grid,
    .fleet-preview,
    .fleet-grid,
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .steps article:nth-child(odd) {
        padding-right: 1.5rem;
    }

    .steps article:nth-child(even) {
        padding-left: 1.5rem;
        border-left: 1px solid var(--line);
    }

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

    .field--full {
        grid-column: 1 / -1;
    }

    .standard-content > article {
        grid-template-columns: 70px 1fr;
    }

    .legal-data div {
        grid-template-columns: 180px 1fr;
    }

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

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

@media (min-width: 900px) {
    .form-layout__intro {
        position: sticky;
        top: 2rem;
    }

    .hero__content,
    .page-hero__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    }

    .hero__content {
        min-height: 700px;
    }

    .hero__form {
        justify-self: end;
    }

    .section-heading--split {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
        align-items: end;
        gap: 3rem;
    }

    .split-feature {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: clamp(4rem, 8vw, 8rem);
    }

    .route-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .steps article,
    .steps article:nth-child(odd),
    .steps article:nth-child(even) {
        padding: 1.5rem;
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
        border-left: 0;
    }

    .relationship {
        grid-template-columns: 0.7fr 1.3fr;
        gap: 6rem;
    }

    .faq-layout,
    .faq-page {
        grid-template-columns: 0.75fr 1.25fr;
        gap: 5rem;
    }

    .content-intro {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 5rem;
    }

    .article-split {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 6rem;
    }

    .event-facts {
        grid-template-columns: 0.85fr 1.15fr;
    }

    .event-facts > p {
        grid-column: 2;
    }

    .form-layout {
        grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
        gap: 4rem;
    }

    .contact-layout {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 5rem;
    }

    .legal-layout {
        grid-template-columns: 250px 1fr;
        gap: 4rem;
    }

    .legal-layout > aside,
    .article-aside {
        position: sticky;
        top: 2rem;
    }

    .guide-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .guide-card--featured {
        display: grid;
        grid-column: 1 / -1;
        grid-template-columns: 1.3fr 0.7fr;
    }

    .guide-card--featured .guide-card__image img {
        height: 100%;
    }

    .article-header__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }

    .article-layout {
        grid-template-columns: 250px 1fr;
        gap: 5rem;
    }

    .footer-cta__inner {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

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

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

    .footer-legal__inner {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .footer-legal nav {
        justify-content: flex-end;
    }
}

@media (min-width: 1140px) {
    .menu-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        overflow: visible;
        align-items: center;
        gap: 1rem;
        padding: 0;
        color: var(--ink);
        background: transparent;
    }

    .primary-nav > a,
    .nav-dropdown > summary {
        min-height: auto;
        padding: 0.7rem 0;
        border: 0;
        font-size: 0.69rem;
        font-weight: 750;
        white-space: nowrap;
    }

    .primary-nav > a:hover,
    .nav-dropdown > summary:hover {
        color: var(--gold-dark);
    }

    .primary-nav .button {
        margin: 0 0 0 0.25rem;
        padding: 0.55rem 1rem;
        color: var(--white);
        background: var(--ink);
    }

    .nav-dropdown {
        position: relative;
    }

    .nav-dropdown > summary {
        list-style: none;
    }

    .nav-dropdown > summary::-webkit-details-marker {
        display: none;
    }

    .nav-dropdown__menu {
        position: absolute;
        top: calc(100% + 0.85rem);
        left: 50%;
        display: grid;
        width: 520px;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0.7rem;
        transform: translateX(-50%);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: var(--shadow);
    }

    .nav-dropdown:not([open]) .nav-dropdown__menu {
        display: none;
    }

    .nav-dropdown__menu a {
        padding: 0.8rem;
        color: var(--ink);
        background: transparent;
    }

    .nav-dropdown__menu a:hover {
        background: var(--sand);
    }

    .nav-dropdown__menu small {
        color: var(--ink-muted);
    }

    .mobile-whatsapp {
        display: none;
    }

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

    .fleet-preview {
        grid-template-columns: repeat(3, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-panel {
        grid-template-columns: 1fr auto;
        padding: 3rem;
    }

    .cta-panel > .button,
    .footer-cta__actions {
        justify-self: end;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
