@font-face {
    font-family: "Barmeno";
    src: url("../fonts/barmeno-regular.otf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Barmeno";
    src: url("../fonts/barmeno-medium.otf") format("opentype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Barmeno";
    src: url("../fonts/barmeno-bold.otf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --brand-blue: #29275b;
    --brand-blue-dark: #1d1b45;
    --brand-yellow: #fbbf33;
    --ink: #20212a;
    --muted: #5b5e68;
    --surface: #ffffff;
    --surface-soft: #f5f6f8;
    --border: #d9dce3;
    --header-height: 136px;
    --radius: 6px;
    --shadow: 0 12px 34px rgba(28, 29, 42, 0.12);
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Barmeno", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.62;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

.media-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.lucide {
    display: block;
    flex: 0 0 auto;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--brand-blue);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 24px;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    width: min(100% - 48px, 1280px);
    max-width: 1280px;
    padding-right: 0;
    padding-left: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1100;
    padding: 10px 16px;
    color: var(--brand-blue);
    background: var(--brand-yellow);
    font-weight: 700;
    transform: translateY(-160%);
}

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

:focus-visible {
    outline: 3px solid var(--brand-yellow);
    outline-offset: 3px;
}

.btn {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 22px 9px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn .lucide {
    width: 18px;
    height: 18px;
    margin-left: 9px;
}

.btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.btn:disabled,
.btn[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.62;
}

.btn-lg {
    min-height: 52px;
    padding: 14px 27px 12px;
}

.btn-brand-primary,
.btn-primary {
    color: var(--brand-blue);
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
}

.btn-brand-primary:hover:not(:disabled),
.btn-primary:hover:not(:disabled) {
    color: var(--brand-blue);
    background: #ffd264;
    border-color: #ffd264;
}

.btn-brand-light {
    color: var(--brand-blue);
    background: var(--surface);
    border-color: var(--surface);
}

.btn-brand-light:hover:not(:disabled) {
    color: var(--brand-blue);
    background: var(--surface-soft);
    border-color: var(--surface-soft);
}

.btn-brand-outline-light {
    color: var(--surface);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.72);
}

.btn-brand-outline-light:hover:not(:disabled) {
    color: var(--brand-blue);
    background: var(--surface);
    border-color: var(--surface);
}

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

.text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link .lucide {
    width: 18px;
    height: 18px;
    color: var(--brand-yellow);
    transition: transform 180ms ease;
}

.text-link:hover .lucide {
    transform: translateX(4px);
}

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

.eyebrow,
.hero-kicker {
    margin-bottom: 15px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before,
.hero-kicker::before {
    display: inline-block;
    width: 32px;
    height: 3px;
    margin-right: 11px;
    background: var(--brand-yellow);
    content: "";
    vertical-align: middle;
}

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

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

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading > p:not(.eyebrow) {
    color: var(--muted);
}

.section-lead-strong {
    color: var(--brand-blue) !important;
    font-weight: 700;
}

.content-band {
    padding: 104px 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--surface);
    box-shadow: 0 2px 14px rgba(28, 29, 42, 0.08);
}

.utility-bar {
    height: 36px;
    color: var(--surface);
    background: var(--brand-blue);
    font-size: 13px;
    font-weight: 500;
}

.utility-bar-inner,
.utility-contact {
    display: flex;
    height: 100%;
    align-items: center;
}

.utility-bar-inner {
    justify-content: space-between;
}

.utility-contact {
    gap: 15px;
}

.utility-contact a {
    text-decoration: none;
}

.utility-contact a:hover {
    color: var(--brand-yellow);
}

.utility-contact .utility-whatsapp-link {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    transition: background-color 180ms ease;
}

.utility-contact .utility-whatsapp-link:hover {
    background: rgba(255, 255, 255, 0.12);
}

.utility-whatsapp-link img {
    display: block;
    width: 18px;
    height: 18px;
}

.utility-separator {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
}

.language-switcher,
.mobile-language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switcher a,
.mobile-language-switcher a {
    position: relative;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.language-switcher a {
    color: rgba(255, 255, 255, 0.72);
}

.language-switcher a:hover,
.language-switcher a.is-current {
    color: var(--brand-yellow);
}

.language-switcher a.is-current::after,
.mobile-language-switcher a.is-current::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--brand-yellow);
    content: "";
}

.main-nav {
    height: 100px;
    background: var(--surface);
}

.main-nav-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-link {
    flex: 0 0 auto;
}

.brand-link img {
    width: 137px;
    height: 88px;
    object-fit: contain;
}

.menu-panel {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 24px;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu a {
    position: relative;
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 8px 9px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.15;
    text-decoration: none;
    white-space: nowrap;
}

.primary-menu a::after {
    position: absolute;
    right: 9px;
    bottom: 6px;
    left: 9px;
    height: 3px;
    background: var(--brand-yellow);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.primary-menu a:hover,
.primary-menu a.active {
    color: var(--brand-blue);
}

.primary-menu a:hover::after,
.primary-menu a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    flex: 0 0 auto;
}

.mobile-nav-controls {
    display: none;
    margin-left: auto;
    align-items: center;
    gap: 6px;
}

.mobile-language-switcher {
    display: none;
    height: 42px;
    align-items: center;
}

.mobile-language-switcher a {
    color: var(--muted);
}

.mobile-language-switcher a.is-current {
    color: var(--brand-blue);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: var(--brand-blue);
    background: transparent;
}

.menu-toggle-lines {
    display: flex;
    width: 25px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

/* Hero */
.home-hero {
    position: relative;
    display: flex;
    height: min(760px, calc(100svh - 150px));
    min-height: 560px;
    align-items: center;
    overflow: hidden;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.home-hero-media,
.home-hero-media img,
.home-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-media img {
    object-fit: cover;
    object-position: center 54%;
}

.home-hero-overlay {
    background: rgba(24, 23, 55, 0.58);
}

.home-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 12px;
}

.home-hero-content > * {
    max-width: 790px;
}

.home-hero h1 {
    margin-bottom: 20px;
    color: var(--surface);
    text-wrap: balance;
}

.home-hero-content > p:not(.hero-kicker) {
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 1.5;
}

.home-hero-content > .home-hero-subtitle {
    max-width: 1100px;
    margin-bottom: 18px;
}

.home-hero-content > .hero-trust-list {
    display: flex;
    max-width: 1100px;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.hero-trust-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-trust-list .lucide {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--brand-yellow);
    stroke-width: 2.5;
}

.hero-trust-list .lucide-star {
    fill: var(--brand-yellow);
}

@media (min-width: 1200px) {
    .home-hero-content > .home-hero-subtitle {
        white-space: nowrap;
    }
}

.hero-kicker {
    color: var(--surface);
}

/* Calpe introduction */
.calpe-intro {
    overflow: hidden;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    align-items: center;
    gap: 88px;
}

.split-copy {
    position: relative;
}

.split-copy h2 {
    margin-bottom: 24px;
}

.split-copy p:not(.eyebrow) {
    color: var(--muted);
}

.split-media {
    position: relative;
    margin: 0;
}

.split-media::before {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 42%;
    height: 44%;
    background: var(--brand-yellow);
    content: "";
}

.split-media img {
    position: relative;
    width: 100%;
    height: 580px;
    border-radius: var(--radius);
    object-fit: cover;
}

.split-media figcaption {
    position: absolute;
    right: -1px;
    bottom: -1px;
    padding: 11px 17px 9px;
    color: var(--surface);
    background: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Services */
.services-band {
    background: var(--surface-soft);
}

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

.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.service-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

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

.service-card-copy {
    position: relative;
    display: flex;
    min-height: 292px;
    flex: 1;
    flex-direction: column;
    padding: 30px;
}

.service-card h3 {
    margin-bottom: 13px;
    text-align: center;
}

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

.service-card p {
    margin-bottom: 18px;
    color: var(--muted);
}

.service-card-features {
    display: grid;
    gap: 9px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--brand-blue);
    font-size: 15px;
    font-weight: 600;
}

.service-card-features .lucide {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: var(--brand-yellow);
    stroke-width: 3;
}

.service-card-link {
    margin-top: auto;
}

/* Feature bands */
.feature-section {
    display: grid;
    min-height: 730px;
    grid-template-columns: 1fr 1fr;
    background: var(--surface);
}

.feature-section-reverse .feature-media {
    order: 2;
}

.feature-section-reverse .feature-copy {
    background: var(--surface);
}

.feature-media {
    min-height: 620px;
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-copy {
    display: flex;
    max-width: 720px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px clamp(48px, 6vw, 104px);
}

.feature-copy h2 {
    margin-bottom: 24px;
}

.feature-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.feature-list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 22px;
    margin: 17px 0 32px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: grid;
    min-height: 30px;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    color: var(--brand-blue);
    font-size: 15px;
    font-weight: 500;
}

.feature-list-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--brand-blue);
    background: var(--brand-yellow);
    border-radius: 50%;
}

.feature-list-icon .lucide {
    width: 19px;
    height: 19px;
    stroke-width: 2.25;
}

/* Routes */
.routes-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.routes-background {
    position: absolute;
    inset: 0;
    background-image: url("../img/home/service-cycling-routes.jpg");
    background-image: image-set(
        url("../img/home/service-cycling-routes.avif") type("image/avif"),
        url("../img/home/service-cycling-routes.webp") type("image/webp"),
        url("../img/home/service-cycling-routes.jpg") type("image/jpeg")
    );
    background-position: center;
    background-size: cover;
    opacity: 0.22;
}

.routes-content {
    position: relative;
}

.section-heading-light h2,
.section-heading-light .eyebrow,
.section-heading-light > p:not(.eyebrow) {
    color: var(--surface);
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.route-card {
    min-height: 330px;
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.route-card:last-child {
    border-right: 0;
}

.route-index {
    display: block;
    margin-bottom: 42px;
    color: var(--brand-yellow);
    font-size: 64px;
    font-weight: 700;
    line-height: 0.9;
}

.route-card h3 {
    margin-bottom: 14px;
    color: var(--surface);
}

.route-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
}

.routes-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 34px;
}

.routes-footer p {
    max-width: 720px;
}

/* Advantages */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

.advantage-item {
    display: flex;
    min-height: 250px;
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.advantage-item:nth-child(-n + 3) {
    border-top: 1px solid var(--border);
}

.advantage-item:first-child {
    border-left: 1px solid var(--border);
}

.advantage-item:nth-child(4) {
    grid-column: 2 / span 2;
    margin-top: -1px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.advantage-item:nth-child(5) {
    margin-top: -1px;
    border-top: 1px solid var(--border);
}

.advantage-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    place-items: center;
    color: var(--brand-blue);
    background: rgba(251, 191, 51, 0.22);
    border-bottom: 3px solid var(--brand-yellow);
}

.advantage-icon .lucide {
    width: 34px;
    height: 34px;
}

.advantage-item h3 {
    margin-bottom: 12px;
}

.advantage-item p {
    color: var(--muted);
    font-size: 15px;
}

/* Reviews */
.reviews-band {
    padding: 84px 0;
    color: var(--surface);
    background: var(--brand-blue);
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.55fr);
    align-items: center;
    gap: 80px;
}

.reviews-layout h2,
.reviews-layout .eyebrow {
    color: var(--surface);
}

.reviews-layout h2 {
    margin-bottom: 18px;
}

.reviews-layout > div:first-child > p:last-child {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
}

.rating-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 54px;
    border-left: 1px solid rgba(255, 255, 255, 0.32);
    text-align: center;
}

.google-rating-brand {
    width: 70px;
    height: auto;
    margin-bottom: 17px;
}

.rating-block strong {
    color: var(--surface);
    font-size: 72px;
    line-height: 0.9;
}

.rating-stars {
    display: flex;
    gap: 3px;
    color: var(--brand-yellow);
    line-height: 1;
}

.rating-stars .lucide {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.rating-block > span:not(.rating-stars) {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
}

.google-rating-link {
    margin-top: 14px;
}

.google-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 56px;
    padding-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.google-review-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
}

.google-review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 24px;
    color: var(--brand-yellow);
}

.google-review-stars .lucide {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.google-review-card blockquote {
    margin: 0;
}

.google-review-card blockquote p {
    margin: 0;
    color: var(--surface);
    font-size: 18px;
    line-height: 1.5;
    quotes: "\201C" "\201D";
}

.google-review-card blockquote p::before {
    content: open-quote;
}

.google-review-card blockquote p::after {
    content: close-quote;
}

.google-review-card footer {
    display: grid;
    gap: 2px;
    margin-top: auto;
    padding-top: 28px;
}

.google-review-card footer strong {
    color: var(--surface);
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .google-review-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 44px;
        padding-top: 36px;
    }

    .google-review-card {
        min-height: 0;
        padding: 25px 23px;
    }
}

/* FAQs */
.faq-section {
    background: var(--surface-soft);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: 88px;
}

.faq-heading {
    position: sticky;
    top: 160px;
}

.faq-heading h2 {
    margin-bottom: 22px;
}

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

.faq-list details {
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    position: relative;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 21px 56px 21px 0;
    color: var(--brand-blue);
    cursor: pointer;
    font-weight: 700;
    line-height: 1.3;
    list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
    position: absolute;
    right: 3px;
    width: 20px;
    height: 2px;
    background: var(--brand-blue);
    content: "";
}

.faq-list summary span::after {
    right: 0;
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

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

.faq-answer {
    max-width: 720px;
    padding: 0 56px 25px 0;
    color: var(--muted);
}

/* Long copy and final CTA */
.costa-blanca-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: 88px;
}

.costa-blanca-layout .section-heading {
    margin-bottom: 0;
}

.long-copy {
    color: var(--muted);
}

.long-copy p {
    margin-bottom: 24px;
}

:where(
    .long-copy,
    .section-heading,
    .fleet-subheading,
    .feature-copy,
    .partner-copy,
    .route-choice-copy,
    .route-access-copy,
    .accommodation-bike-copy,
    .rider-types-copy,
    .faq-answer
) > p:not(.eyebrow):has(+ p:not(.eyebrow)),
.repair-workshop-cta-inner > div > p:not(.eyebrow):has(+ p:not(.eyebrow)),
.final-cta-inner > div > p:not(.eyebrow):has(+ p:not(.eyebrow)) {
    margin-bottom: 4px;
}

.faq-answer > p + p {
    margin-top: 4px;
}

.final-cta {
    padding: 72px 0;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.final-cta h2,
.final-cta .eyebrow {
    color: var(--surface);
}

.final-cta h2 {
    max-width: 730px;
    margin-bottom: 14px;
}

.final-cta p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.final-actions {
    flex: 0 0 auto;
}

/* Existing supporting pages */
.body-padding main,
.body-padding > .section {
    min-height: 55vh;
}

.body-padding > .section {
    padding-top: 80px !important;
    padding-bottom: 96px !important;
}

.body-padding .section h1 {
    font-size: 46px;
}

.form-label,
.form-check-label {
    color: var(--brand-blue);
    font-weight: 500;
}

.form-control {
    min-height: 48px;
    border-color: var(--border);
    border-radius: 4px;
    font-family: inherit;
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus,
.form-check-input:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 0.2rem rgba(251, 191, 51, 0.3);
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.76);
    background: var(--brand-blue);
}

.whatsapp-float {
    position: fixed;
    right: max(24px, env(safe-area-inset-right));
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 900;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--surface);
    background: #25d366;
    box-shadow: 0 8px 26px rgba(14, 45, 29, 0.28);
    text-decoration: none;
    transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover {
    color: var(--surface);
    background: #1fbd59;
    box-shadow: 0 11px 30px rgba(14, 45, 29, 0.34);
    transform: translateY(-3px);
}

.whatsapp-float:focus-visible {
    outline: 3px solid var(--surface);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px var(--brand-blue), 0 11px 30px rgba(14, 45, 29, 0.34);
}

.whatsapp-float-icon {
    position: relative;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
}

.whatsapp-float-icon img {
    width: 36px;
    height: 36px;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
    gap: 48px;
    padding-top: 70px;
    padding-bottom: 64px;
}

.footer-brand img {
    width: 220px;
    height: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 330px;
    font-size: 15px;
}

.footer-column h2 {
    margin-bottom: 22px;
    color: var(--surface);
    font-size: 18px;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--brand-yellow);
}

.footer-contact address {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-style: normal;
}

.footer-hours p {
    margin-bottom: 8px;
    font-size: 15px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--brand-blue-dark);
}

.footer-bottom-inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    font-size: 13px;
}

.footer-bottom-inner p {
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--brand-yellow);
}

/* Bike Rental page */
.bike-rental-page h4 {
    margin: 0;
    color: var(--brand-blue);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
}

.page-hero {
    position: relative;
    display: flex;
    height: min(680px, calc(100svh - 170px));
    min-height: 540px;
    align-items: center;
    overflow: hidden;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.page-hero-media,
.page-hero-media img,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-hero-media img {
    object-fit: cover;
    object-position: center 52%;
}

.page-hero-overlay {
    background: rgba(24, 23, 55, 0.55);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

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

.page-hero h1 {
    margin-bottom: 18px;
    color: var(--surface);
}

.page-hero-content > p:not(.hero-kicker) {
    margin-bottom: 30px;
    font-size: 21px;
}

.editorial-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 90px;
}

.editorial-layout .section-heading {
    margin-bottom: 0;
}

.fleet-section,
.rental-process,
.bike-comparison {
    background: var(--surface-soft);
}

.fleet-subheading,
.ebike-heading {
    max-width: none;
}

.fleet-subheading {
    margin: 78px 0 36px;
}

.fleet-subheading h3,
.ebike-heading h3 {
    margin-bottom: 17px;
    font-size: 31px;
}

.fleet-subheading p,
.ebike-heading > p:not(.eyebrow) {
    color: var(--muted);
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.bike-card {
    display: flex;
    min-width: 0;
    grid-column: span 2;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.bike-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.bike-card-media {
    aspect-ratio: 4 / 3;
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.bike-card-media img,
.ebike-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bike-card-body {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.bike-brand {
    margin-bottom: 8px;
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.bike-tagline {
    margin: 12px 0 18px;
    color: var(--brand-blue);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.bike-description {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 15px;
}

.bike-specs {
    margin: auto 0 0;
}

.bike-specs > div {
    display: grid;
    grid-template-columns: minmax(105px, 0.72fr) minmax(0, 1.28fr);
    gap: 15px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.bike-specs dt {
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.bike-specs dd {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.bike-versions {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bike-versions span {
    display: block;
}

.ebike-heading {
    margin: 104px 0 36px;
}

.ebike-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.ebike-media {
    min-height: 570px;
    padding: 38px;
    border-right: 1px solid var(--border);
    background: var(--surface);
}

.ebike-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.ebike-copy h4 {
    font-size: 29px;
}

.fleet-note {
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-style: italic;
}

.selection-help {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 38px;
    padding: 30px 34px;
    color: var(--surface);
    background: var(--brand-blue);
    border-left: 5px solid var(--brand-yellow);
}

.selection-help-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--brand-blue);
    background: var(--brand-yellow);
    border-radius: 50%;
}

.selection-help-icon .lucide {
    width: 27px;
    height: 27px;
}

.selection-help h3 {
    margin-bottom: 7px;
    color: var(--surface);
    font-size: 22px;
}

.selection-help h2 {
    margin-bottom: 7px;
    color: var(--surface);
    font-size: 22px;
}

.selection-help p {
    color: rgba(255, 255, 255, 0.78);
}

.selection-help-cta {
    justify-self: end;
}

.scenic-rental-cta {
    position: relative;
    display: flex;
    min-height: 430px;
    align-items: center;
    overflow: hidden;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.scenic-rental-image,
.scenic-rental-overlay {
    position: absolute;
    inset: 0;
}

.scenic-rental-image {
    background-image: url("../img/bike-rental/scenic-rental-cta.jpg");
    background-image: image-set(
        url("../img/bike-rental/scenic-rental-cta.avif") type("image/avif"),
        url("../img/bike-rental/scenic-rental-cta.webp") type("image/webp"),
        url("../img/bike-rental/scenic-rental-cta.jpg") type("image/jpeg")
    );
    background-position: center 55%;
    background-size: cover;
}

.scenic-rental-overlay {
    background: rgba(24, 23, 55, 0.6);
}

.scenic-rental-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.scenic-rental-content p {
    max-width: 770px;
    margin-left: auto;
    margin-bottom: 28px;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.2;
}

.rental-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.rental-service-item {
    min-height: 315px;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.rental-service-icon,
.comparison-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: var(--brand-blue);
    background: rgba(251, 191, 51, 0.22);
    border-bottom: 3px solid var(--brand-yellow);
}

.rental-service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 48px;
}

.comparison-icon {
    width: 64px;
    height: 64px;
}

.comparison-icon .lucide,
.rental-service-icon .lucide {
    width: 34px;
    height: 34px;
}

.rental-service-item h3 {
    margin-bottom: 13px;
    font-size: 21px;
}

.rental-service-item p {
    color: var(--muted);
    font-size: 15px;
}

.process-intro {
    margin-bottom: 76px;
}

.steps-title {
    margin-bottom: 28px;
    font-size: 29px;
}

.rental-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    list-style: none;
}

.rental-steps li {
    display: grid;
    min-height: 0;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 25px;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.step-number {
    color: var(--brand-yellow);
    font-size: 64px;
    font-weight: 700;
    line-height: 0.9;
}

.rental-steps h4 {
    margin-bottom: 12px;
    font-size: 19px;
}

.rental-steps p {
    color: var(--muted);
    font-size: 15px;
}

.related-stay {
    position: relative;
    display: flex;
    min-height: 600px;
    align-items: center;
    overflow: hidden;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.related-stay-media,
.related-stay-overlay {
    position: absolute;
    inset: 0;
}

.related-stay-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-stay-overlay {
    background: rgba(24, 23, 55, 0.64);
}

.related-stay-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.related-stay-copy {
    display: flex;
    max-width: 630px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 0;
}

.related-stay-copy h2 {
    margin-bottom: 22px;
    color: var(--surface);
}

.related-stay-copy .eyebrow {
    color: var(--surface);
}

.related-stay-copy > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.82);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.comparison-item {
    min-height: 320px;
    padding: 38px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.comparison-icon {
    margin-bottom: 58px;
}

.comparison-item h3 {
    margin-bottom: 15px;
}

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

.rental-faqs {
    background: var(--surface);
}

/* Accommodation page */
.accommodation-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 700ms ease;
}

.accommodation-hero-slide.is-active {
    opacity: 1;
}

.accommodation-hero-slide:nth-child(1) img {
    object-position: center 62%;
}

.accommodation-hero-slide:nth-child(2) img {
    object-position: center 50%;
}

.accommodation-hero-slide:nth-child(3) img {
    object-position: center 55%;
}

.accommodation-slider-controls {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 50%;
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 5px;
    padding: 5px;
    background: rgba(24, 23, 55, 0.74);
    transform: translateX(-50%);
}

.accommodation-slider-controls > button {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
}

.accommodation-slider-controls > button:hover,
.accommodation-slider-controls > button:focus-visible {
    color: var(--brand-blue);
    background: var(--brand-yellow);
    border-color: var(--brand-yellow);
}

.accommodation-slider-controls .lucide {
    width: 19px;
    height: 19px;
}

.accommodation-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 7px;
}

.accommodation-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: transparent;
}

.accommodation-slider-dot.is-active {
    border-color: var(--brand-yellow);
    background: var(--brand-yellow);
}

.partner-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 82px;
    align-items: center;
}

.partner-mark {
    min-width: 0;
    padding-right: 58px;
    border-right: 1px solid var(--border);
}

.partner-mark img {
    width: min(100%, 415px);
    height: auto;
}

.partner-kicker {
    max-width: 390px;
    margin: 26px 0 0;
    color: var(--brand-blue);
    font-size: 21px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.35;
}

.partner-kicker span {
    display: block;
}

.partner-copy h2 {
    margin-bottom: 24px;
}

.partner-copy > p:not(.partner-kicker) {
    color: var(--muted);
}

.partner-copy .btn {
    margin-top: 12px;
}

.apartments-section,
.route-access-section,
.rider-types-section {
    background: var(--surface-soft);
}

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.apartment-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.apartment-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

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

.apartment-card-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 27px 25px;
}

.apartment-card h3 {
    margin-bottom: 22px;
    font-size: 22px;
}

.apartment-card-body > p {
    color: var(--muted);
    font-size: 15px;
}

.apartment-details {
    margin: 0 0 24px;
}

.apartment-details > div {
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.apartment-details dt {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 5px;
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
}

.apartment-details dt .lucide {
    width: 17px;
    height: 17px;
    color: var(--brand-yellow);
}

.apartment-details dd {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.accommodation-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.accommodation-benefit-item {
    min-height: 290px;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.accommodation-benefit-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 42px;
    place-items: center;
    color: var(--brand-blue);
    border-bottom: 3px solid var(--brand-yellow);
    background: rgba(251, 191, 51, 0.22);
}

.accommodation-benefit-icon .lucide {
    width: 34px;
    height: 34px;
}

.accommodation-benefit-item h3 {
    margin-bottom: 13px;
    font-size: 20px;
}

.accommodation-benefit-item p {
    color: var(--muted);
    font-size: 15px;
}

.route-access-section {
    color: var(--surface);
    background: var(--brand-blue);
}

.route-access-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 76px;
    align-items: center;
}

.route-access-copy .eyebrow,
.route-access-copy h2 {
    color: var(--surface);
}

.route-access-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.route-map-media {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: var(--radius);
    background: #f5f7f7;
    box-shadow: var(--shadow);
}

.route-map-media .media-picture {
    display: block;
    aspect-ratio: 4 / 3;
}

.route-map-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation-bike-rental {
    position: relative;
    display: flex;
    min-height: 620px;
    align-items: center;
    overflow: hidden;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.accommodation-bike-media,
.accommodation-bike-overlay {
    position: absolute;
    inset: 0;
}

.accommodation-bike-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.accommodation-bike-overlay {
    background: rgba(24, 23, 55, 0.64);
}

.accommodation-bike-inner {
    position: relative;
    z-index: 1;
    display: flex;
}

.accommodation-bike-copy {
    display: flex;
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 96px 0;
    color: var(--surface);
}

.accommodation-bike-copy .eyebrow,
.accommodation-bike-copy h2 {
    color: var(--surface);
}

.accommodation-bike-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.accommodation-bike-copy .btn {
    margin-top: 14px;
}

.rider-types-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: start;
}

.rider-types-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.rider-type-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    list-style: none;
}

.rider-type-list li {
    display: flex;
    min-height: 84px;
    align-items: center;
    gap: 13px;
    padding: 18px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    color: var(--brand-blue);
    background: var(--surface);
    font-size: 15px;
    font-weight: 700;
}

.rider-type-list .lucide {
    width: 21px;
    height: 21px;
    color: var(--brand-yellow);
}

.accommodation-faqs {
    background: var(--surface);
}

/* Cycling Routes page */
.cycling-routes-page h4 {
    margin: 0;
    color: var(--brand-blue);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.16;
}

.cycling-routes-hero .page-hero-media img {
    object-position: center 53%;
}

.route-choice-section,
.route-collection {
    background: var(--surface-soft);
}

.route-choice-section {
    padding-bottom: 56px;
}

.route-collection {
    padding-top: 56px;
}

.route-choice-help {
    margin-top: 0;
}

.route-choice-help p + p {
    margin-top: 5px;
}

.route-collection-heading {
    padding-bottom: 52px;
    border-bottom: 1px solid var(--border);
}

.route-filter {
    display: inline-flex;
    max-width: 100%;
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.route-filter-button {
    min-width: 124px;
    min-height: 46px;
    padding: 10px 17px 8px;
    border: 0;
    border-radius: 3px;
    color: var(--brand-blue);
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.route-filter-button:hover,
.route-filter-button.active {
    color: var(--brand-blue);
    background: var(--brand-yellow);
}

.route-filter-status {
    margin-top: 13px;
    color: var(--muted);
    font-size: 14px;
}

.route-group[hidden] {
    display: none;
}

.route-group {
    padding-top: 86px;
}

.route-group + .route-group {
    margin-top: 94px;
    border-top: 1px solid var(--border);
}

.route-group.is-filtered {
    margin-top: 0;
    border-top: 0;
}

.route-group-heading {
    display: grid;
    grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 38px;
}

.route-group-heading h3 {
    margin-bottom: 0;
    font-size: 31px;
}

.route-category-label {
    margin-bottom: 8px;
    color: var(--brand-yellow);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.route-group-heading > p {
    color: var(--muted);
}

.route-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.route-group[data-route-group="short"] .route-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cycling-route-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.route-card-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    border-bottom: 1px solid var(--border);
    background: var(--surface-soft);
}

.route-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-card-placeholder {
    position: relative;
    display: flex;
    aspect-ratio: 3 / 2;
    min-height: 230px;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
    overflow: hidden;
    color: var(--surface);
    border-bottom: 1px solid var(--border);
    background: var(--brand-blue-dark);
}

.route-card-placeholder::after {
    position: absolute;
    right: -8%;
    bottom: 28%;
    left: -8%;
    height: 2px;
    background: rgba(255, 255, 255, 0.28);
    content: "";
    transform: rotate(-7deg);
}

.route-placeholder-index {
    position: relative;
    z-index: 1;
    color: var(--brand-yellow);
    font-size: 18px;
    font-weight: 700;
}

.route-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    color: rgba(255, 255, 255, 0.86);
    transform: translate(-50%, -50%);
}

.route-placeholder-icon .lucide {
    width: 54px;
    height: 54px;
}

.route-placeholder-category {
    position: relative;
    z-index: 1;
    align-self: flex-end;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.route-card-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 28px;
}

.route-card-description {
    margin: 15px 0 18px;
    color: var(--muted);
    font-size: 15px;
}

.route-best-for {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}

.route-best-for strong {
    color: var(--brand-blue);
}

.route-card-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 22px;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.route-card-stats > div {
    min-width: 0;
    padding: 15px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface-soft);
}

.route-card-stats dt {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

.route-card-stats dd {
    margin: 0;
    color: var(--brand-blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.route-card-details {
    margin: 0 0 25px;
}

.route-card-details > div {
    display: grid;
    grid-template-columns: minmax(102px, 0.9fr) minmax(0, 1.1fr);
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

.route-card-details dt {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

.route-card-details dt .lucide {
    width: 16px;
    height: 16px;
    color: var(--brand-yellow);
}

.route-card-details dd {
    margin: 0;
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
}

.route-download {
    width: 100%;
}

.route-guidance {
    color: var(--surface);
    background: var(--brand-blue);
}

.route-guidance-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 76px;
    align-items: start;
}

.route-guidance-heading .eyebrow,
.route-guidance-heading h2 {
    color: var(--surface);
}

.route-guidance-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    list-style: none;
}

.route-guidance-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 15px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.route-guidance-list li > span {
    color: var(--brand-yellow);
}

.route-guidance-list .lucide {
    width: 24px;
    height: 24px;
}

.route-guidance-list p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
}

.route-related-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 1px solid var(--border);
}

.route-related-item {
    display: flex;
    min-height: 560px;
    align-items: center;
    padding: 84px clamp(48px, 6vw, 104px);
}

.route-related-item > div {
    max-width: 600px;
}

.route-related-item h2 {
    margin-bottom: 22px;
}

.route-related-item > div > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: var(--muted);
}

.route-related-bike {
    background: var(--surface);
}

.route-related-accommodation {
    border-left: 1px solid var(--border);
    background: var(--surface-soft);
}

.cycling-routes-faqs {
    background: var(--surface);
}

/* Repair & Maintenance page */
.repair-maintenance-hero .page-hero-media img {
    object-position: center 50%;
}

.repair-maintenance-hero .page-hero-content > * {
    width: min(100%, 640px);
    margin-left: auto;
}

.repair-intro,
.repair-services,
.repair-specialties {
    background: var(--surface);
}

.repair-all-brands,
.repair-process,
.repair-faqs {
    background: var(--surface-soft);
}

.repair-workshop-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 90px;
}

.repair-workshop-layout .section-heading {
    margin-bottom: 0;
}

.repair-brand-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 68px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.repair-brand-item {
    display: flex;
    min-width: 0;
    min-height: 112px;
    flex: 0 1 calc((100% - 108px) / 7);
    align-items: center;
    justify-content: center;
    padding: 14px;
    border: 1px solid rgba(41, 39, 91, 0.08);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(41, 39, 91, 0.06);
}

.repair-brand-item picture {
    display: block;
    width: 100%;
}

.repair-brand-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 2;
    object-fit: contain;
}

.repair-services-heading,
.repair-issues-heading {
    margin-bottom: 54px;
}

.repair-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.repair-service-item {
    min-width: 0;
    min-height: 330px;
    padding: 30px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.repair-service-icon,
.repair-issue-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    color: var(--brand-blue);
    border-bottom: 3px solid var(--brand-yellow);
    background: rgba(251, 191, 51, 0.22);
}

.repair-service-icon {
    margin-bottom: 46px;
}

.repair-service-icon .lucide,
.repair-issue-icon .lucide {
    width: 34px;
    height: 34px;
}

.repair-issue-icon {
    background: var(--surface);
}

.repair-service-item h3,
.repair-issue-item h3,
.repair-steps h3 {
    margin-bottom: 12px;
    color: var(--brand-blue);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.repair-service-item p,
.repair-issue-item p,
.repair-steps p {
    color: var(--muted);
    font-size: 15px;
}

.repair-workshop-cta {
    padding: 92px 0;
    color: var(--surface);
    background: var(--brand-blue);
}

.repair-workshop-cta-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
    align-items: start;
}

.repair-workshop-cta h2,
.repair-workshop-cta .eyebrow {
    color: var(--surface);
}

.repair-workshop-cta p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.8);
}

.repair-workshop-cta .btn {
    margin-top: 14px;
}

.repair-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    list-style: none;
}

.repair-steps li {
    display: grid;
    min-width: 0;
    min-height: 220px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 24px;
    padding: 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.repair-steps li:last-child {
    min-height: 190px;
    grid-column: 1 / -1;
}

.repair-step-number {
    color: var(--brand-yellow);
    font-size: 18px;
    font-weight: 700;
}

.repair-issues {
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.repair-issues .eyebrow,
.repair-issues h2 {
    color: var(--surface);
}

.repair-issues-heading > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.repair-issue-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.repair-issue-item {
    display: grid;
    min-width: 0;
    min-height: 190px;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 22px;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.repair-issue-item h3 {
    color: var(--surface);
}

.repair-issue-item p {
    color: rgba(255, 255, 255, 0.76);
}

.repair-specialty {
    display: grid;
    min-height: 650px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.repair-specialty + .repair-specialty {
    border-top: 1px solid var(--border);
}

.repair-specialty-media {
    min-width: 0;
    margin: 0;
}

.repair-specialty-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repair-specialty-copy {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px clamp(48px, 6vw, 104px);
}

.repair-specialty-copy h2 {
    margin-bottom: 22px;
}

.repair-specialty-copy > p:not(.eyebrow) {
    margin-bottom: 28px;
    color: var(--muted);
}

.repair-specialty-reverse .repair-specialty-media {
    order: 2;
}

.repair-specialty-reverse .repair-specialty-copy {
    justify-self: end;
}

/* FAQs page */
.faq-page-header {
    display: flex;
    min-height: 390px;
    align-items: flex-end;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.faq-page-header-inner {
    padding-top: 94px;
    padding-bottom: 76px;
}

.faq-page-header h1 {
    max-width: 900px;
    margin: 0;
    color: var(--surface);
}

.faq-page-intro {
    background: var(--surface);
}

.faq-intro-layout {
    display: block;
}

.faq-intro-layout .section-heading {
    max-width: none;
    margin-bottom: 0;
}

.faq-intro-layout .section-heading > p:not(.eyebrow) {
    max-width: none;
    color: var(--muted);
}

.faq-directory {
    padding: 0 0 112px;
    background: var(--surface-soft);
}

.faq-directory-toolbar {
    padding: 46px 0 54px;
    border-bottom: 1px solid var(--border);
}

.faq-category-filter {
    display: flex;
    max-width: 100%;
    padding: 4px;
    gap: 4px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    scrollbar-width: thin;
}

.faq-category-button {
    display: inline-flex;
    min-width: max-content;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 17px 9px;
    border: 0;
    border-radius: 3px;
    color: var(--brand-blue);
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.faq-category-button:hover,
.faq-category-button.active {
    background: var(--brand-yellow);
}

.faq-results-status {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
}

.faq-category-section {
    padding-top: 86px;
}

.faq-category-section + .faq-category-section {
    margin-top: 94px;
    border-top: 1px solid var(--border);
}

.faq-category-section.is-filtered {
    margin-top: 0;
    border-top: 0;
}

.faq-category-heading {
    margin-bottom: 48px;
}

.faq-category-heading h2 {
    margin-bottom: 0;
}

.faq-topic-group {
    display: grid;
    grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1.52fr);
    gap: 74px;
    padding: 42px 0;
    border-top: 1px solid var(--border);
}

.faq-topic-group h3 {
    margin: 0;
    color: var(--brand-blue);
    font-size: 23px;
    line-height: 1.2;
}

.faq-directory-list {
    min-width: 0;
}

.faq-directory-list .faq-answer p + p,
.faq-directory-list .faq-answer p + ul,
.faq-directory-list .faq-answer ul + p {
    margin-top: 13px;
}

.faq-directory-list .faq-answer ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.faq-directory-list .faq-answer li + li {
    margin-top: 5px;
}

.faq-contact-cta h2 {
    max-width: 850px;
    font-size: 35px;
}

/* Contact page */
.contact-page-header {
    display: flex;
    min-height: 430px;
    align-items: flex-end;
    color: var(--surface);
    background: var(--brand-blue-dark);
}

.contact-page-header-inner {
    padding-top: 94px;
    padding-bottom: 76px;
}

.contact-page-header h1 {
    max-width: 900px;
    margin-bottom: 16px;
    color: var(--surface);
}

.contact-page-header-inner > p:not(.hero-kicker) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 21px;
}

.contact-intro {
    background: var(--surface);
}

.contact-intro-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 90px;
    align-items: start;
}

.contact-intro-layout .section-heading {
    margin-bottom: 0;
}

.contact-intro-layout > p {
    max-width: 820px;
    color: var(--muted);
    font-size: 19px;
}

.contact-main-section {
    background: var(--surface-soft);
}

.contact-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(290px, 0.72fr);
    gap: 90px;
    align-items: start;
}

.contact-form-panel {
    padding: 50px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.contact-form-heading {
    margin-bottom: 42px;
}

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

.contact-form-heading > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-form-message {
    margin-bottom: 28px;
    padding: 16px 18px;
    border-left: 4px solid var(--brand-blue);
    color: var(--brand-blue);
    background: var(--surface-soft);
}

.contact-form-message.is-error {
    border-left-color: #b42318;
    color: #8f1d14;
    background: #fff3f2;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-field {
    min-width: 0;
}

.contact-field label,
.contact-privacy label {
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
}

.contact-field label {
    display: block;
    margin-bottom: 9px;
}

.field-optional {
    margin-left: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px 11px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    background: var(--surface-soft);
    font: inherit;
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--brand-blue);
    outline: 3px solid rgba(41, 39, 91, 0.16);
}

.contact-message-field {
    margin-top: 24px;
}

.contact-field-error {
    display: none;
    margin-top: 7px;
    color: #8f1d14;
    font-size: 13px;
}

.contact-form.was-validated .contact-field input:invalid,
.contact-form.was-validated .contact-field select:invalid,
.contact-form.was-validated .contact-field textarea:invalid {
    border-color: #b42318;
}

.contact-form.was-validated .contact-field input:invalid + .contact-field-error,
.contact-form.was-validated .contact-field select:invalid + .contact-field-error,
.contact-form.was-validated .contact-field textarea:invalid + .contact-field-error,
.contact-form.was-validated .contact-privacy input:invalid ~ .contact-field-error {
    display: block;
}

.contact-privacy {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.contact-privacy input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--brand-blue);
}

.contact-privacy a {
    color: var(--brand-blue);
}

.contact-privacy .contact-field-error {
    grid-column: 2;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.contact-form-footer p {
    color: var(--muted);
    font-size: 13px;
}

.contact-shop-details {
    position: sticky;
    top: 160px;
}

.contact-shop-details h2 {
    margin-bottom: 34px;
}

.contact-detail-list {
    margin: 0;
    border-top: 1px solid var(--border);
}

.contact-detail-list > div {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail-list dt {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
}

.contact-detail-list dt .lucide {
    width: 19px;
    height: 19px;
    color: var(--brand-yellow);
}

.contact-detail-list dd {
    margin: 0;
    color: var(--muted);
}

.contact-detail-list a {
    color: inherit;
}

.contact-social {
    margin-top: 34px;
}

.contact-social h3 {
    margin-bottom: 14px;
    color: var(--brand-blue);
    font-size: 18px;
}

.contact-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    color: var(--brand-blue);
    font-weight: 700;
}

.contact-social .lucide {
    width: 16px;
    height: 16px;
}

.contact-location {
    display: grid;
    min-height: 620px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--surface);
}

.contact-location-media {
    min-width: 0;
    margin: 0;
}

.contact-location-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-location-copy {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px clamp(48px, 6vw, 104px);
}

.contact-location-copy h2 {
    margin-bottom: 20px;
}

.contact-location-copy > p:not(.eyebrow),
.contact-location-copy address {
    margin-bottom: 24px;
    color: var(--muted);
}

.contact-location-copy address {
    max-width: 480px;
    font-style: normal;
    font-weight: 700;
}

.thanks-page {
    background: var(--brand-blue-dark);
}

.thanks-panel {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    place-items: center;
    padding: 90px 0;
}

.thanks-panel-inner {
    max-width: 760px;
    color: var(--surface);
    text-align: center;
}

.thanks-icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    place-items: center;
    color: var(--brand-blue);
    border-bottom: 4px solid var(--brand-yellow);
    background: var(--surface);
}

.thanks-icon .lucide {
    width: 36px;
    height: 36px;
}

.thanks-panel h1,
.thanks-panel .eyebrow {
    color: var(--surface);
}

.thanks-panel h1 {
    margin-bottom: 18px;
}

.thanks-panel-inner > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
}

.not-found-actions {
    justify-content: center;
}

@media (max-width: 1199.98px) {
    :root {
        --header-height: 120px;
    }

    .utility-bar {
        height: 32px;
    }

    .main-nav {
        height: 88px;
    }

    .brand-link img {
        width: 122px;
        height: 78px;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav-controls {
        display: flex;
    }

    .menu-panel {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        width: min(420px, 100%);
        padding: 26px 24px 40px;
        flex-direction: column;
        align-items: stretch;
        gap: 26px;
        overflow-y: auto;
        visibility: hidden;
        background: var(--surface);
        box-shadow: -18px 18px 36px rgba(28, 29, 42, 0.18);
        transform: translateX(100%);
        transition: transform 220ms ease, visibility 220ms ease;
    }

    .menu-panel.is-open {
        visibility: visible;
        transform: translateX(0);
    }

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

    .primary-menu a {
        min-height: 52px;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 17px;
        white-space: normal;
    }

    .primary-menu a::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
    }

    .split-layout,
    .faq-layout,
    .costa-blanca-layout {
        gap: 54px;
    }

    .feature-section {
        min-height: 650px;
    }

    .feature-copy {
        padding: 64px 44px;
    }

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

    .route-card:nth-child(2) {
        border-right: 0;
    }

    .route-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bike-grid,
    .rental-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bike-card,
    .bike-card:nth-child(4) {
        grid-column: auto;
    }

    .bike-card:last-child {
        width: calc(50% - 12px);
        grid-column: 1 / -1;
        justify-self: center;
    }

    .editorial-layout {
        gap: 58px;
    }
}

@media (max-width: 991.98px) {
    .content-band,
    .routes-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .split-layout {
        grid-template-columns: 1fr 0.8fr;
        gap: 42px;
    }

    .split-media img {
        height: 500px;
    }

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

    .service-card:last-child {
        grid-column: 1 / -1;
    }

    .service-card:last-child .service-image {
        aspect-ratio: 2 / 1;
    }

    .feature-section {
        grid-template-columns: 1fr;
    }

    .feature-section-reverse .feature-media {
        order: 0;
    }

    .feature-media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .feature-copy {
        max-width: none;
        padding: 70px max(24px, calc((100vw - 720px) / 2));
    }

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

    .advantage-item,
    .advantage-item:nth-child(4) {
        grid-column: auto;
    }

    .advantage-item,
    .advantage-item:nth-child(4),
    .advantage-item:nth-child(5) {
        margin-top: 0;
        border: 0;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .advantage-item:nth-child(-n + 3) {
        border-top: 0;
    }

    .advantage-item:nth-child(-n + 2) {
        border-top: 1px solid var(--border);
    }

    .advantage-item:nth-child(odd):not(:last-child) {
        border-left: 1px solid var(--border);
    }

    .advantage-item:last-child {
        width: calc(50% - 14px);
        grid-column: 1 / -1;
        justify-self: center;
        margin-top: -1px;
        border: 1px solid var(--border);
    }

    .reviews-layout {
        gap: 45px;
    }

    .rating-block {
        padding-left: 36px;
    }

    .faq-layout,
    .costa-blanca-layout {
        grid-template-columns: 1fr;
    }

    .faq-heading {
        position: static;
    }

    .final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .editorial-layout,
    .ebike-showcase,
    .related-stay {
        grid-template-columns: 1fr;
    }

    .editorial-layout {
        gap: 36px;
    }

    .ebike-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .related-stay {
        min-height: 560px;
    }

    .related-stay-media {
        aspect-ratio: auto;
    }

    .related-stay-copy {
        max-width: 620px;
        padding: 76px 0;
    }
}

@media (max-width: 767.98px) {
    :root {
        --header-height: 82px;
    }

    .whatsapp-float {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }

    .whatsapp-float-icon,
    .whatsapp-float-icon img {
        width: 32px;
        height: 32px;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
    }

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

    .utility-bar {
        display: none;
    }

    .mobile-language-switcher {
        display: flex;
    }

    .main-nav {
        height: 82px;
    }

    .brand-link img {
        width: 105px;
        height: 68px;
    }

    .home-hero {
        height: calc(100svh - 116px);
        min-height: 570px;
        max-height: 700px;
    }

    .home-hero-media img {
        object-position: 62% center;
    }

    .home-hero-content > p:not(.hero-kicker) {
        font-size: 18px;
    }

    .home-hero-content > .home-hero-subtitle {
        margin-bottom: 18px;
    }

    .home-hero-content > .hero-trust-list {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
        margin-bottom: 24px;
    }

    .hero-trust-list li {
        align-items: flex-start;
        font-size: 14px;
    }

    .hero-actions,
    .final-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .btn,
    .final-actions .btn {
        width: 100%;
    }

    .content-band,
    .routes-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .split-layout,
    .service-grid,
    .faq-layout,
    .costa-blanca-layout,
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .split-layout {
        gap: 42px;
    }

    .split-media {
        width: calc(100% - 10px);
    }

    .split-media img {
        height: 430px;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-card:last-child .service-image {
        aspect-ratio: 4 / 3;
    }

    .service-card-copy {
        min-height: 0;
        padding: 27px 24px 24px;
    }

    .service-card p {
        min-height: 0;
    }

    .feature-media {
        aspect-ratio: 4 / 3;
    }

    .feature-copy {
        padding: 58px 18px 64px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .route-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .route-card,
    .route-card:nth-child(2),
    .route-card:nth-child(-n + 2) {
        min-height: 0;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    }

    .route-card:last-child {
        border-bottom: 0;
    }

    .route-index {
        margin-bottom: 24px;
        font-size: 48px;
    }

    .routes-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .routes-footer .btn {
        width: 100%;
    }

    .advantage-item {
        width: auto;
        grid-column: auto;
        min-height: 0;
        padding: 28px 24px;
        border: 0;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-left: 1px solid var(--border);
    }

    .advantage-item:nth-child(4),
    .advantage-item:last-child {
        width: auto;
        grid-column: auto;
        margin-top: 0;
        border: 0;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        border-left: 1px solid var(--border);
    }

    .advantage-item:nth-child(-n + 3) {
        border-top: 0;
    }

    .advantage-item:first-child {
        border-top: 1px solid var(--border);
    }

    .reviews-layout {
        gap: 38px;
    }

    .rating-block {
        padding-top: 35px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.32);
        border-left: 0;
    }

    .rating-block strong {
        font-size: 64px;
    }

    .faq-list summary {
        min-height: 72px;
        padding-right: 42px;
    }

    .faq-answer {
        padding-right: 28px;
    }

    .final-cta {
        padding: 58px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 56px;
        padding-bottom: 52px;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .footer-bottom nav {
        gap: 12px 20px;
    }

    .body-padding > .section {
        padding-top: 54px !important;
        padding-bottom: 70px !important;
    }

    .body-padding .section h1 {
        font-size: 36px;
    }

    .page-hero {
        height: calc(100svh - 116px);
        min-height: 560px;
        max-height: 680px;
    }

    .page-hero-media img {
        object-position: 42% center;
    }

    .page-hero-content > p:not(.hero-kicker) {
        font-size: 18px;
    }

    .page-hero .btn {
        width: 100%;
    }

    .bike-grid,
    .rental-service-grid,
    .rental-steps,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .bike-card:last-child {
        width: auto;
        grid-column: auto;
    }

    .fleet-subheading {
        margin-top: 58px;
    }

    .fleet-subheading h3,
    .ebike-heading h3 {
        font-size: 27px;
    }

    .bike-card-media {
        padding: 0;
    }

    .bike-card-body,
    .ebike-copy {
        padding: 24px;
    }

    .bike-specs > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .ebike-heading {
        margin-top: 70px;
    }

    .ebike-media {
        aspect-ratio: 4 / 3;
        padding: 22px;
    }

    .selection-help {
        grid-template-columns: 1fr;
        padding: 26px 24px;
    }

    .selection-help-cta {
        width: 100%;
        justify-self: stretch;
    }

    .scenic-rental-cta {
        min-height: 400px;
    }

    .scenic-rental-content p {
        font-size: 25px;
    }

    .scenic-rental-content .btn {
        width: 100%;
    }

    .rental-service-item,
    .comparison-item {
        min-height: 0;
        padding: 28px 24px;
    }

    .rental-service-icon,
    .comparison-icon {
        margin-bottom: 32px;
    }

    .process-intro {
        margin-bottom: 52px;
    }

    .rental-steps li {
        min-height: 0;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 14px;
        padding: 26px 22px;
    }

    .step-number {
        font-size: 48px;
    }

    .related-stay-media {
        aspect-ratio: auto;
    }

    .related-stay-copy {
        max-width: none;
        padding: 64px 0;
    }
}

@media (max-width: 1199.98px) {
    .partner-layout,
    .rider-types-layout {
        gap: 54px;
    }

    .accommodation-benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .route-access-layout {
        gap: 48px;
    }
}

@media (max-width: 991.98px) {
    .partner-layout,
    .route-access-layout,
    .rider-types-layout,
    .accommodation-bike-rental {
        grid-template-columns: 1fr;
    }

    .partner-mark {
        padding: 0 0 42px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .partner-mark img {
        width: min(100%, 360px);
    }

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

    .accommodation-benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .accommodation-bike-media {
        aspect-ratio: auto;
    }

    .accommodation-bike-copy {
        max-width: 620px;
        padding: 76px 0;
    }
}

@media (max-width: 767.98px) {
    .accommodation-hero-slide:nth-child(1) img,
    .accommodation-hero-slide:nth-child(2) img,
    .accommodation-hero-slide:nth-child(3) img {
        object-position: center center;
    }

    .accommodation-slider-controls {
        bottom: 18px;
    }

    .accommodation-slider-dots {
        padding-right: 4px;
        padding-left: 4px;
    }

    .partner-kicker {
        font-size: 19px;
    }

    .partner-copy .btn {
        width: 100%;
    }

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

    .apartment-card-media {
        aspect-ratio: 4 / 3;
    }

    .apartment-card-body {
        padding: 25px 23px;
    }

    .accommodation-benefit-grid,
    .rider-type-list {
        grid-template-columns: 1fr;
    }

    .accommodation-benefit-item {
        min-height: 0;
        padding: 28px 24px;
    }

    .accommodation-benefit-icon {
        margin-bottom: 30px;
    }

    .route-access-layout {
        gap: 42px;
    }

    .accommodation-bike-media {
        aspect-ratio: auto;
    }

    .accommodation-bike-copy {
        max-width: none;
        padding: 64px 0;
    }

    .accommodation-bike-copy .btn {
        width: 100%;
    }

    .rider-type-list li {
        min-height: 68px;
    }
}

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

    .route-group-heading,
    .route-guidance-layout {
        gap: 50px;
    }
}

@media (max-width: 991.98px) {
    .route-group-heading,
    .route-guidance-layout,
    .route-related-services {
        grid-template-columns: 1fr;
    }

    .route-group-heading {
        gap: 18px;
        align-items: start;
    }

    .route-guidance-layout {
        gap: 42px;
    }

    .route-related-item {
        min-height: 0;
        padding: 70px max(24px, calc((100vw - 720px) / 2));
    }

    .route-related-accommodation {
        border-top: 1px solid var(--border);
        border-left: 0;
    }
}

@media (max-width: 767.98px) {
    .cycling-routes-hero .page-hero-media img {
        object-position: 58% center;
    }

    .route-choice-section {
        padding-bottom: 40px;
    }

    .route-collection {
        padding-top: 40px;
    }

    .route-collection-heading {
        padding-bottom: 42px;
    }

    .route-filter {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .route-filter-button {
        min-width: 0;
        padding-right: 10px;
        padding-left: 10px;
    }

    .route-group {
        padding-top: 62px;
    }

    .route-group + .route-group {
        margin-top: 68px;
    }

    .route-group.is-filtered {
        margin-top: 0;
    }

    .route-group-heading h3 {
        font-size: 27px;
    }

    .route-card-grid,
    .route-group[data-route-group="short"] .route-card-grid,
    .route-guidance-list {
        grid-template-columns: 1fr;
    }

    .route-card-placeholder {
        min-height: 210px;
    }

    .route-card-body {
        padding: 25px 23px;
    }

    .route-guidance-list li {
        min-height: 0;
        padding: 26px 22px;
    }

    .route-related-item {
        padding: 58px 18px 64px;
    }

    .route-related-item .btn {
        width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .repair-workshop-layout {
        gap: 58px;
    }

    .repair-brand-strip {
        gap: 20px;
    }

    .repair-brand-item {
        flex-basis: calc((100% - 60px) / 4);
    }

    .repair-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .repair-issue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .repair-workshop-layout,
    .repair-workshop-cta-inner,
    .repair-specialty {
        grid-template-columns: 1fr;
    }

    .repair-workshop-layout,
    .repair-workshop-cta-inner {
        gap: 38px;
    }

    .repair-specialty {
        min-height: 0;
    }

    .repair-specialty-media,
    .repair-specialty-reverse .repair-specialty-media {
        order: 0;
        aspect-ratio: 16 / 9;
    }

    .repair-specialty-copy,
    .repair-specialty-reverse .repair-specialty-copy {
        max-width: none;
        justify-self: stretch;
        padding: 70px max(24px, calc((100vw - 720px) / 2));
    }
}

@media (max-width: 767.98px) {
    .repair-maintenance-hero .page-hero-media img {
        object-position: 38% center;
    }

    .repair-maintenance-hero .page-hero-content > * {
        margin-left: 0;
    }

    .repair-brand-strip {
        gap: 16px;
        margin-top: 48px;
    }

    .repair-brand-item {
        min-height: 104px;
        flex-basis: calc((100% - 16px) / 2);
        padding: 12px;
    }

    .repair-service-grid,
    .repair-steps,
    .repair-issue-grid {
        grid-template-columns: 1fr;
    }

    .repair-service-item {
        min-height: 0;
        padding: 28px 24px;
    }

    .repair-service-icon {
        margin-bottom: 32px;
    }

    .repair-workshop-cta {
        padding: 70px 0;
    }

    .repair-workshop-cta .btn {
        width: 100%;
    }

    .repair-steps li,
    .repair-steps li:last-child {
        min-height: 0;
        grid-column: auto;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        padding: 26px 22px;
    }

    .repair-issue-item {
        min-height: 0;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 16px;
        padding: 26px 22px;
    }

    .repair-specialty-media {
        aspect-ratio: 4 / 3;
    }

    .repair-specialty-copy,
    .repair-specialty-reverse .repair-specialty-copy {
        padding: 58px 18px 64px;
    }
}

@media (max-width: 1199.98px) {
    .faq-intro-layout {
        gap: 58px;
    }

    .faq-topic-group {
        gap: 48px;
    }
}

@media (max-width: 991.98px) {
    .faq-topic-group {
        grid-template-columns: 1fr;
    }

    .faq-topic-group {
        gap: 18px;
    }
}

@media (max-width: 767.98px) {
    .faq-page-header {
        min-height: 310px;
    }

    .faq-page-header-inner {
        padding-top: 66px;
        padding-bottom: 58px;
    }

    .faq-directory {
        padding-bottom: 82px;
    }

    .faq-directory-toolbar {
        padding: 36px 0 42px;
    }

    .faq-category-filter {
        margin-right: -18px;
        padding-right: 18px;
        border-right: 0;
        border-radius: var(--radius) 0 0 var(--radius);
    }

    .faq-category-section {
        padding-top: 62px;
    }

    .faq-category-section + .faq-category-section {
        margin-top: 68px;
    }

    .faq-category-section.is-filtered {
        margin-top: 0;
    }

    .faq-category-heading {
        margin-bottom: 34px;
    }

    .faq-topic-group {
        padding: 34px 0;
    }

    .faq-topic-group h3 {
        font-size: 21px;
    }

    .faq-contact-cta h2 {
        font-size: 27px;
    }

    .faq-contact-cta .btn {
        width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .contact-intro-layout,
    .contact-main-layout {
        gap: 58px;
    }

}

@media (max-width: 991.98px) {
    .contact-intro-layout,
    .contact-main-layout,
    .contact-location {
        grid-template-columns: 1fr;
    }

    .contact-intro-layout {
        gap: 34px;
    }

    .contact-shop-details {
        position: static;
    }

    .contact-location {
        min-height: 0;
    }

    .contact-location-media {
        aspect-ratio: 16 / 9;
    }

    .contact-location-copy {
        max-width: none;
        padding: 70px max(24px, calc((100vw - 720px) / 2));
    }
}

@media (max-width: 767.98px) {
    .contact-page-header {
        min-height: 340px;
    }

    .contact-page-header-inner {
        padding-top: 68px;
        padding-bottom: 58px;
    }

    .contact-page-header-inner > p:not(.hero-kicker) {
        font-size: 18px;
    }

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

    .contact-form-panel {
        padding: 30px 22px;
    }

    .contact-form-heading {
        margin-bottom: 34px;
    }

    .contact-form-grid {
        gap: 20px;
    }

    .contact-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form-footer .btn {
        width: 100%;
    }

    .contact-social a {
        margin-bottom: 10px;
    }

    .contact-location-media {
        aspect-ratio: 4 / 3;
    }

    .contact-location-copy {
        padding: 58px 18px 64px;
    }

    .contact-location-copy .btn {
        width: 100%;
    }

    .thanks-panel {
        min-height: 620px;
        padding: 72px 0;
    }

    .thanks-panel .btn {
        width: 100%;
    }

    .not-found-actions {
        flex-direction: column;
    }
}

/* Legal pages */
.legal-page-header {
    color: var(--surface);
    background: var(--brand-blue);
    border-bottom: 4px solid var(--brand-yellow);
}

.legal-page-header-inner {
    padding-top: 88px;
    padding-bottom: 76px;
}

.legal-page-header h1 {
    max-width: 850px;
    margin-bottom: 18px;
    color: var(--surface);
}

.legal-page-header .hero-kicker {
    color: var(--surface);
}

.legal-updated {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
}

.legal-page-body {
    padding: 96px 0 112px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 820px);
    justify-content: center;
    gap: 88px;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 164px;
    padding-left: 22px;
    border-left: 3px solid var(--brand-yellow);
}

.legal-toc > p {
    margin-bottom: 16px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-toc nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.legal-toc a {
    padding: 4px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
}

.legal-toc a:hover {
    color: var(--brand-blue);
}

.legal-toc--long {
    max-height: calc(100vh - 196px);
    padding-right: 14px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.legal-content {
    min-width: 0;
}

.legal-content section {
    scroll-margin-top: 160px;
}

.legal-content section + section {
    margin-top: 58px;
    padding-top: 58px;
    border-top: 1px solid var(--border);
}

.legal-content h2 {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.15;
}

.legal-content h3 {
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 21px;
    line-height: 1.25;
}

.legal-content p,
.legal-content li,
.legal-content dd {
    color: #3f424d;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 0 0 24px;
    padding-left: 22px;
}

.legal-content li + li {
    margin-top: 9px;
}

.legal-content a {
    color: var(--brand-blue);
    font-weight: 700;
    text-decoration-color: var(--brand-yellow);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.legal-details {
    margin: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.legal-details > div {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 26px;
    padding: 16px 0;
}

.legal-details > div + div {
    border-top: 1px solid var(--border);
}

.legal-details dt {
    color: var(--brand-blue);
    font-weight: 700;
}

.legal-details dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

.legal-status-note {
    margin-bottom: 54px;
    padding: 24px 26px;
    background: var(--surface-soft);
    border-left: 4px solid var(--brand-yellow);
}

.legal-status-note strong {
    display: block;
    margin-bottom: 7px;
    color: var(--brand-blue);
    font-size: 18px;
}

.legal-status-note p {
    margin: 0;
}

.legal-table-wrap {
    max-width: 100%;
    margin: 30px 0;
    overflow-x: auto;
    border: 1px solid var(--border);
}

.legal-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.45;
}

.legal-table th,
.legal-table td {
    padding: 16px 18px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.legal-table th:last-child,
.legal-table td:last-child {
    border-right: 0;
}

.legal-table tbody tr:last-child td {
    border-bottom: 0;
}

.legal-table th {
    color: var(--surface);
    background: var(--brand-blue);
    font-weight: 700;
}

.legal-table code,
.legal-content code {
    color: var(--brand-blue-dark);
    font-size: 0.92em;
}

@media (max-width: 991.98px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 62px;
    }

    .legal-toc {
        position: static;
    }

    .legal-toc--long {
        max-height: none;
        padding-right: 0;
        overflow-y: visible;
    }

    .legal-toc nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 32px;
    }
}

@media (max-width: 767.98px) {
    .legal-page-header-inner {
        padding-top: 64px;
        padding-bottom: 56px;
    }

    .legal-page-header h1 {
        font-size: 40px;
    }

    .legal-page-body {
        padding: 64px 0 82px;
    }

    .legal-layout {
        gap: 48px;
    }

    .legal-toc nav {
        grid-template-columns: 1fr;
    }

    .legal-content section + section {
        margin-top: 44px;
        padding-top: 44px;
    }

    .legal-content h2 {
        font-size: 27px;
    }

    .legal-details > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .legal-status-note {
        padding: 22px 20px;
    }
}

/* Shared icon, title and description groups */
.why-section > .container > .section-heading,
.rental-services > .container > .section-heading,
.bike-comparison > .container > .section-heading,
.accommodation-benefits > .container > .section-heading,
.repair-services > .container > .section-heading,
.repair-issues > .container > .section-heading {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.advantage-grid,
.rental-service-grid,
.comparison-grid,
.accommodation-benefit-grid,
.repair-service-grid,
.repair-issue-grid {
    gap: 34px 24px;
    border: 0;
}

.advantage-item,
.rental-service-item,
.comparison-item,
.accommodation-benefit-item,
.repair-service-item,
.repair-issue-item {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 18px 14px;
    border: 0;
    text-align: center;
}

.advantage-item,
.advantage-item:nth-child(-n + 3),
.advantage-item:first-child,
.advantage-item:nth-child(4),
.advantage-item:nth-child(5),
.advantage-item:nth-child(odd):not(:last-child),
.advantage-item:last-child {
    margin-top: 0;
    border: 0;
}

.advantage-icon,
.rental-service-icon,
.comparison-icon,
.accommodation-benefit-icon,
.repair-service-icon,
.repair-issue-icon {
    display: grid;
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    margin: 0 auto 28px;
    place-items: center;
    color: var(--brand-yellow);
    background: transparent;
    border-bottom: 0;
}

.advantage-icon .lucide,
.rental-service-icon .lucide,
.comparison-icon .lucide,
.accommodation-benefit-icon .lucide,
.repair-service-icon .lucide,
.repair-issue-icon .lucide {
    width: 88px;
    height: 88px;
}

.advantage-item p,
.rental-service-item p,
.comparison-item p,
.accommodation-benefit-item p,
.repair-service-item p,
.repair-issue-item p {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
}

.repair-issue-item > div {
    text-align: center;
}

.repair-issue-icon {
    color: var(--brand-yellow);
}

@media (min-width: 1200px) {
    .why-section .advantage-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .why-section .advantage-item,
    .why-section .advantage-item:nth-child(4),
    .why-section .advantage-item:last-child {
        width: auto;
        grid-column: auto;
        justify-self: stretch;
    }
}

@media (max-width: 991.98px) {
    .editorial-layout,
    .costa-blanca-layout,
    .repair-workshop-layout,
    .repair-workshop-cta-inner,
    .contact-intro-layout {
        gap: 0;
    }
}

@media (max-width: 767.98px) {
    .advantage-grid,
    .rental-service-grid,
    .comparison-grid,
    .accommodation-benefit-grid,
    .repair-service-grid,
    .repair-issue-grid {
        gap: 44px;
    }

    .advantage-item,
    .advantage-item:last-child {
        width: auto;
        justify-self: stretch;
    }

    .advantage-item,
    .rental-service-item,
    .comparison-item,
    .accommodation-benefit-item,
    .repair-service-item,
    .repair-issue-item {
        padding: 6px 0;
    }
}

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

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