html,
body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

/* Skip to content link (accessibility) */
.ar-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.75rem 1.5rem;
    background: var(--ar-navy);
    color: #fff;
    font-weight: 500;
    border-radius: 0 0 0.5rem 0.5rem;
    text-decoration: none;
    transition: top 0.2s;
}
.ar-skip-link:focus {
    top: 0;
    color: #fff;
}

/* Global focus-visible for keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--ar-blue);
    outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    text-wrap: balance;
}

:root {
    --ar-navy: #2B4C6F;
    --ar-blue: #4EADC5;
    --ar-white: #ffffff;
    --ar-ivory: #FAFCFD;
}


/* ---- Unified Typography ---- */
.ar-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.ar-label--blue {
    color: var(--ar-blue);
}

.ar-section-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom: 1.5rem;
}

.ar-card-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.ar-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

/* Wave decoration */
.ar-waves {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ar-waves::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/img/waves-light.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
}

.ar-waves.ar-light::after {
    background-image: url('/assets/img/waves-dark.svg');
}

/* Dark bg colors */
.ar-dark .ar-label {
    color: rgba(255, 255, 255, 0.5);
}

.ar-dark .ar-section-title {
    color: #fff;
}

.ar-dark .ar-text {
    color: rgba(255, 255, 255, 0.5);
}

.ar-dark .ar-card-title {
    color: #fff;
}

/* Light bg colors */
.ar-light .ar-label {
    color: var(--ar-blue);
}

.ar-light .ar-section-title {
    color: var(--ar-navy);
}

.ar-light .ar-text {
    color: rgba(43, 76, 111, 0.5);
}

.ar-light .ar-card-title {
    color: var(--ar-navy);
}

html:has(#page-prva) {
    scrollbar-width: none;
    overflow-x: clip;
}

html:has(#page-prva)::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 1340px;
}

/* ---- Page Wrapper ---- */
#page-prva {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--ar-navy);
    overflow-x: clip;
    width: 100%;
}

#page-prva ::selection {
    background: var(--ar-navy);
    color: #fff;
}

.logoM {
    width: 45px;
}

.logoFuter {
    width: 285px;
}

/* ---- Intro Overlay ---- */
.ar-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ar-intro-logo {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 4.5rem);
    letter-spacing: 0.4em;
    text-indent: 0.4em;
    color: #fff;
    opacity: 0;
}


/* ---- Navbar ---- */
.ar-navbar {
    padding: 24px 40px;
    background: transparent !important;
    transition: background 0.6s ease, padding 0.4s ease;
    z-index: 1000;
    border-bottom: none !important;
    box-shadow: none !important;
}

.ar-navbar.ar-navbar-scrolled {
    background: rgba(15, 28, 46, 0.97) !important;
    padding: 14px 10px;
}

.ar-brand {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.3em;
    color: #fff !important;
    text-decoration: none !important;
}

.ar-brand:hover {
    color: rgba(255, 255, 255, 0.7) !important;
}

.ar-nav-link {
    color: rgb(255, 255, 255) !important;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.15rem;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0 !important;
    display: inline-block;
}

.ar-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.4s ease;
}

.ar-nav-link:hover {
    color: rgba(255, 255, 255, 0.7) !important;
}

.ar-nav-link:hover::after {
    width: 100%;
}

.ar-lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 0.75rem;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.ar-lang-flag {
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 4px;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.ar-lang-flag--active {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.6);
}

.ar-lang-flag:hover {
    opacity: 1;
    transform: scale(1.08);
}

.ar-lang-flag img {
    width: 26px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    display: block;
}

.ar-navbar .navbar-toggler {
    border: none !important;
    padding: 0;
    box-shadow: none !important;
}

.ar-navbar .navbar-toggler:focus {
    box-shadow: none !important;
}

.ar-nav-close {
    border: none !important;
    padding: 4px;
    box-shadow: none !important;
    background: transparent;
    display: none;
    margin-left: auto;
    margin-bottom: 8px;
}

.logoNavbar {
    width: 300px;
}

.logoHero {
    width: 840px;
}

/* ---- Button (single style) ---- */
.ar-btn {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid var(--ar-navy);
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.4s ease;
    background: var(--ar-navy);
    cursor: pointer;
}

.ar-btn:hover {
    background: rgba(43, 76, 111, 0.82);
    color: #fff;
    border-color: rgba(43, 76, 111, 0.82);
}

.ar-btn-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.ar-btn-outline:hover {
    background: #fff;
    color: var(--ar-navy);
    border-color: #fff;
}


/* ---- Hero Section ---- */
.ar-hero {
    position: relative;
    height: 65vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ar-hero {
    height: 100vh;
}

.ar-hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ar-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(15, 28, 46, 0.45) 35%,
            rgba(15, 28, 46, 0.1) 65%,
            rgba(15, 28, 46, 0.7) 100%);
    z-index: 1;
}

.ar-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

/* Homepage hero — left aligned */
#ar-hero .ar-hero-content {
    width: 100%;
    text-align: center;
}

#ar-hero .ar-hero-buttons {
    justify-content: center;
}

#ar-hero .ar-btn {
    padding: 18px 52px;
    font-size: 0.88rem;
    letter-spacing: 0.2em;
}

#ar-hero .ar-btn-outline {
    border-width: 1.5px;
}

.ar-hero-badge {
    display: inline-block;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(0.65rem, 0.9vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 0.5em 1.5em;
    margin-bottom: 2rem;
}

.ar-hero-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 8rem);
    letter-spacing: 0.12em;
    text-indent: 0.12em;
    margin-bottom: 0.8rem;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    text-wrap: balance;
}

.ar-hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.ar-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1.25rem, 1vw, 2rem);
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.863);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.ar-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ar-hero-location {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
}


/* ---- Hero Feature Cards (overlap) ---- */
.ar-hero-features {
    position: relative;
    z-index: 5;
    margin-top: -80px;
    background: var(--ar-ivory);
    padding: 0 0 80px;
}

.ar-hero-features .row {
    box-shadow: none;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.ar-hero-feature {
    background: #fff;
    padding: 52px 40px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 1px 3px rgba(43, 76, 111, 0.04),
                0 8px 30px rgba(43, 76, 111, 0.06);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.6s ease;
}

.ar-hero-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(43, 76, 111, 0.05),
                0 20px 50px rgba(43, 76, 111, 0.1);
}

.ar-hero-feature .ar-card-title {
    color: var(--ar-navy);
}

.ar-hero-feature .ar-text {
    color: rgba(43, 76, 111, 0.45);
    font-size: 1.45rem;
}

.ar-hero-feature-icon {
    color: var(--ar-blue);
    margin-bottom: 1.5rem;
    line-height: 1;
    transition: transform 0.5s ease;
}

.ar-hero-feature:hover .ar-hero-feature-icon {
    transform: translateY(-2px);
}


/* ---- Statement Section ---- */
.ar-statement {
    background: var(--ar-ivory);
    padding: 170px 0;
}

.ar-statement .ar-text {
    max-width: 620px;
    margin: 0 auto;
}


/* ---- Image Split ---- */
.ar-image-split {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ar-image-split-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

.ar-image-split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(15, 28, 46, 0.05) 0%,
            rgba(15, 28, 46, 0.65) 55%,
            rgba(15, 28, 46, 0.88) 100%);
    z-index: 1;
}

.ar-image-split-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 640px;
    margin-right: 8%;
}

.ar-split-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
    line-height: 1.3;
    text-transform: uppercase;
    text-wrap: balance;
}

.ar-split-detail {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1.32rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
    line-height: 1.7;
}


/* ---- Bike Showcase Section ---- */
.ar-bikes {
    background: #fff;
    overflow: hidden;
}

.ar-bikes-header {
    text-align: center;
    padding: 120px 0 60px;
}

.ar-bikes-header .ar-label {
    color: var(--ar-blue);
}

.ar-bikes-header .ar-section-title {
    color: var(--ar-navy);
    margin-bottom: 0;
}

.ar-bikes-wrap {
    display: flex;
    min-height: 70vh;
}

.ar-bike-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-right: 1px solid rgba(43, 76, 111, 0.05);
}

.ar-bike-panel:last-child {
    border-right: none;
}

.ar-bikes-wrap:hover .ar-bike-panel:hover {
    flex: 2;
}

.ar-bike-panel-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px 80px;
    transition: background 0.6s ease;
}

.ar-bike-panel:hover .ar-bike-panel-inner {
    background: rgba(43, 76, 111, 0.02);
}

.ar-bike-panel-img {
    max-height: 320px;
    max-width: 90%;
    width: auto;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 20px 40px rgba(43, 76, 111, 0.08));
}

.ar-bike-panel:hover .ar-bike-panel-img {
    transform: scale(1.12);
    filter: drop-shadow(0 30px 60px rgba(43, 76, 111, 0.12));
}

.ar-bike-panel-content {
    text-align: center;
    margin-top: 3rem;
}

.ar-bike-panel-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--ar-blue);
    margin-bottom: 0.5rem;
    transition: opacity 0.5s ease;
}

.ar-bike-panel-name {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 3vw, 3.5rem);
    color: var(--ar-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    line-height: 1;
}

.ar-bike-panel-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: rgba(43, 76, 111, 0.4);
    letter-spacing: 0.04em;
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.ar-bike-panel:hover .ar-bike-panel-desc {
    opacity: 1;
    transform: translateY(0);
}


/* ---- Feeling Section ---- */
.ar-feeling {
    background: var(--ar-navy);
    padding: 160px 0;
    text-align: center;
}


/* ---- Locations CTA Section ---- */
.ar-locations-cta {
    background: #fff;
    overflow: hidden;
}

.ar-locations-cta-text {
    padding: 80px 10%;
}

.ar-locations-cta .ar-text {
    margin-bottom: 2.5rem;
}

.ar-locations-cta-img {
    height: 100%;
    min-height: 500px;
}

.ar-locations-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ---- Access Section ---- */
.ar-access {
    background: var(--ar-ivory);
    padding: 140px 0;
}

.ar-access-card {
    padding: 48px 34px;
    text-align: center;
    border: none;
    background: #fff;
    height: 100%;
    position: relative;
    box-shadow: 0 1px 3px rgba(43, 76, 111, 0.04),
                0 8px 30px rgba(43, 76, 111, 0.06);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.6s ease;
}

.ar-access-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(43, 76, 111, 0.05),
                0 20px 50px rgba(43, 76, 111, 0.1);
}

.ar-access-step {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: rgba(43, 76, 111, 0.1);
    display: block;
    margin-bottom: 1.5rem;
    line-height: 1;
    transition: color 0.5s ease;
}

.ar-access-card:hover .ar-access-step {
    color: var(--ar-blue);
}


/* ---- Final CTA ---- */
.ar-final-cta {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-final-cta-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

.ar-final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 46, 0.55);
    z-index: 1;
}

.ar-final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ar-final-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 3rem;
    line-height: 1.15;
    text-transform: uppercase;
    text-wrap: balance;
}


/* ---- Shared page hero title ---- */
.ar-page-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(2.5rem, 4vw, 5rem);
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
    text-wrap: balance;
}

/* ---- Mini hero (FAQ, etc.) — no image, solid bg ---- */
.ar-hero--mini {
    height: auto;
    padding: 180px 0 80px;
    background: linear-gradient(165deg, #1a3550 0%, var(--ar-navy) 50%, #1e3d5e 100%);
}

.ar-hero--mini .ar-page-title {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.ar-hero--mini .ar-hero-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* ---- Subpage hero — content at bottom ---- */
.ar-exp-hero {
    align-items: flex-end;
    padding-bottom: 60px;
}

.ar-exp-hero .container {
    position: relative;
    z-index: 2;
}

/* ---- Experience / Usluge Page ---- */

.ar-exp-hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

.ar-exp-performance {
    background: #fff;
    padding: 140px 0;
    text-align: center;
}

.ar-exp-performance .ar-section-title {
    margin-bottom: 4rem;
}

.ar-exp-stat-list {
    margin-bottom: 4rem;
}

.ar-exp-stat-item {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    color: rgba(43, 76, 111, 0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(43, 76, 111, 0.08);
    margin: 0;
}

.ar-exp-stat-item:first-child {
    border-top: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-exp-performance-closing {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: rgba(43, 76, 111, 0.45);
    font-style: italic;
    letter-spacing: 0.04em;
}


/* ---- About Page ---- */
.ar-abt-vision {
    background: #fff;
}


/* ---- Lokacije Page — Card Grid ---- */
.ar-lok-grid {
    background: white;
    padding: 0;
}

.ar-lok-grid .row {
    --bs-gutter-x: 4px;
    --bs-gutter-y: 4px;
}

.ar-lok-card {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 0;
}

.ar-lok-card--hero {
    height: 70vh;
}

.ar-lok-card--half {
    height: 55vh;
}

.ar-lok-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ar-lok-card:hover .ar-lok-card-bg {
    transform: scale(1.06);
}

.ar-lok-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
            rgba(15, 28, 46, 0.85) 0%,
            rgba(15, 28, 46, 0.25) 45%,
            rgba(15, 28, 46, 0.05) 100%);
    z-index: 1;
    transition: background 0.6s ease;
}

.ar-lok-card:hover .ar-lok-card-overlay {
    background: linear-gradient(to top,
            rgba(15, 28, 46, 0.9) 0%,
            rgba(15, 28, 46, 0.3) 50%,
            rgba(15, 28, 46, 0.1) 100%);
}

.ar-lok-card-content {
    position: relative;
    z-index: 2;
    padding: 50px;
    width: 100%;
}

.ar-lok-card-badge {
    display: inline-block;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.35em 0.9em;
    margin-bottom: 1.2rem;
}

.ar-lok-card-badge.active {
    background: var(--ar-navy);
    color: #fff;
}

.ar-lok-card-badge.coming {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
}

.ar-lok-card-name {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.05;
    text-wrap: balance;
    margin-bottom: 0.6rem;
}

.ar-lok-card--hero .ar-lok-card-name {
    font-size: clamp(1.8rem, 4vw, 3.8rem);
}

.ar-lok-card--half .ar-lok-card-name {
    font-size: clamp(1.6rem, 3.5vw, 3rem);
}

.ar-lok-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.726);
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.ar-lok-card-cta {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid var(--ar-navy);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.68rem;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    text-decoration: none !important;
    background: var(--ar-navy);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.ar-lok-card:hover .ar-lok-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.ar-lok-card-cta:hover {
    background: rgba(43, 76, 111, 0.82);
    color: #fff;
    border-color: rgba(43, 76, 111, 0.82);
}

/* Coming soon cards — muted style */
.ar-lok-card.ar-lok-card--coming .ar-lok-card-bg {
    filter: grayscale(40%) brightness(0.7);
}

.ar-lok-card.ar-lok-card--coming:hover .ar-lok-card-bg {
    filter: grayscale(20%) brightness(0.8);
    transform: scale(1.04);
}


/* ---- Contact Page ---- */
.ar-cnt-intro {
    padding: 120px 0;
}

/* Form Section */
.ar-cnt-form-section {
    background: #fff;
    padding: 120px 0 160px;
}

.ar-cnt-form {
    width: 100%;
}

.ar-cnt-field {
    margin-bottom: 2.5rem;
}

.ar-cnt-label {
    display: block;
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ar-navy);
    margin-bottom: 0.8rem;
}

.ar-cnt-optional {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: none;
    color: rgba(43, 76, 111, 0.3);
    font-size: 0.7rem;
}

.ar-cnt-input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid rgba(43, 76, 111, 0.12);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.92rem;
    color: var(--ar-navy);
    letter-spacing: 0.02em;
    transition: border-color 0.4s ease;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.ar-cnt-input:focus {
    border-bottom-color: var(--ar-blue);
}

.ar-cnt-input::placeholder {
    color: rgba(43, 76, 111, 0.25);
}

.ar-cnt-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234EADC5' stroke-width='1' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 28px;
}

.ar-cnt-select option {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--ar-navy);
    background: #fff;
}

.ar-cnt-textarea {
    resize: vertical;
    min-height: 100px;
}

.ar-cnt-submit-wrap {
    margin-top: 3rem;
}

/* Alternative Contact */
.ar-cnt-alt {
    padding-top: 1rem;
}

.ar-cnt-alt-label {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    color: var(--ar-navy);
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.ar-cnt-alt-line {
    width: 60px;
    margin: 0 0 2.5rem;
}

.ar-cnt-alt-item {
    margin-bottom: 2rem;
}

.ar-cnt-alt-item:last-child {
    margin-bottom: 0;
}

.ar-cnt-alt-key {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ar-blue);
    margin-bottom: 0.4rem;
}

.ar-cnt-alt-val {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: rgba(43, 76, 111, 0.5);
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-bottom: 0;
    display: block;
}

a.ar-cnt-alt-val {
    transition: color 0.3s ease;
}

a.ar-cnt-alt-val:hover {
    color: var(--ar-blue);
}

/* Flow note */
.ar-cnt-flow-note {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(43, 76, 111, 0.35);
    font-style: italic;
    letter-spacing: 0.04em;
    margin-top: 3.5rem;
}


/* ---- Access Page ---- */
/* Access Types */
.ar-acc-types {
    background: var(--ar-ivory);
    padding: 180px 0;
    text-align: center;
}

.ar-acc-line-center {
    width: 80px;
    height: 2px;
    background: rgba(43, 76, 111, 0.12);
    margin: 0 auto 5rem;
}

.ar-acc-type-item {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(43, 76, 111, 0.08);
    text-align: left;
}

.ar-acc-type-item:first-of-type {
    border-top: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-acc-type-num {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: rgba(43, 76, 111, 0.15);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}

.ar-acc-type-body {
    flex: 1;
}


.ar-acc-type-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    color: rgba(43, 76, 111, 0.5);
    line-height: 1.8;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}

.ar-acc-type-note {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    color: rgba(43, 76, 111, 0.3);
    letter-spacing: 0.06em;
    font-style: italic;
    margin-bottom: 0;
}

/* What to Expect note */
.ar-acc-expect-note {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ar-acc-expect-note p {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    letter-spacing: 0.04em;
    margin: 0;
}

/* Location — full screen image */
.ar-acc-location {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-acc-location-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
}

.ar-acc-location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 46, 0.6);
    z-index: 1;
}

.ar-acc-location-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ar-acc-location-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.ar-acc-location-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    line-height: 1.9;
    margin-bottom: 0.3rem;
}

/* Booking Flow */
.ar-acc-flow {
    background: var(--ar-ivory);
    padding: 180px 0;
}

.ar-acc-flow .ar-section-title {
    margin-bottom: 4rem;
}

.ar-acc-flow-steps {
    text-align: left;
    max-width: 360px;
    margin: 0 auto;
}

.ar-acc-flow-step {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-acc-flow-step:first-child {
    border-top: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-acc-flow-num {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: rgba(43, 76, 111, 0.3);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.ar-acc-flow-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
    color: rgba(43, 76, 111, 0.5);
    letter-spacing: 0.08em;
    margin: 0;
}


/* ---- Footer ---- */
.ar-footer {
    background: #0F1C2E;
    padding: 120px 0 0;
    color: #fff;
}

.ar-footer-top {
    padding-bottom: 80px;
}

.ar-footer-brand-col {
    margin-bottom: 2rem;
}

.ar-footer-logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.ar-footer-logo img {
    height: 28px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.ar-footer-logo:hover img {
    opacity: 1;
}

.ar-footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    letter-spacing: 0.04em;
    max-width: 280px;
}

.ar-footer-col {
    margin-bottom: 2rem;
}

.ar-footer-col-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.8rem;
}

.ar-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ar-footer-links li {
    margin-bottom: 0.9rem;
}

.ar-footer-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}

.ar-footer-links a:hover {
    color: #fff;
}

.ar-footer-social {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.ar-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.ar-footer-social-link:hover {
    border-color: #fff;
    color: #fff;
}

.ar-footer-email {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.ar-footer-email:hover {
    color: #fff;
}

.ar-footer-loc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    margin: 0;
}

.ar-footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.ar-footer-bottom {
    padding: 30px 0;
    align-items: center;
}

.ar-footer-copy {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    margin: 0;
}

.ar-footer-legal {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.1em;
    margin: 0;
}


/* ---- Responsive ---- */
@media (max-width: 991px) {
    .ar-hero-features {
        margin-top: -60px;
    }

    .ar-hero-feature {
        padding: 36px 28px;
    }

    .ar-image-split {
        justify-content: center;
    }

    .ar-image-split-content {
        margin-right: 0;
        text-align: center;
    }

    .ar-image-split-overlay {
        background: rgba(15, 28, 46, 0.7);
    }

    .ar-navbar .navbar-collapse {
        background: rgba(15, 28, 46, 0.96);
        padding: 24px 20px;
        margin-top: 12px;
        border-radius: 2px;
    }

    .ar-nav-close {
        display: block;
    }

    .ar-lang-switch {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 0.75rem;
        gap: 8px;
    }

    .ar-footer {
        padding: 80px 0 0;
    }

    .ar-footer-top {
        padding-bottom: 50px;
    }

    .ar-footer-brand-col {
        margin-bottom: 3rem;
    }

    .ar-footer-col {
        margin-bottom: 2.5rem;
    }

    .ar-lok-card--hero {
        height: 50vh;
    }

    .ar-lok-card--half {
        height: 45vh;
    }

    .ar-lok-card-content {
        padding: 40px;
    }

    .ar-lok-card-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .ar-bikes-wrap {
        min-height: 60vh;
    }

    .ar-bike-panel-inner {
        padding: 40px 24px 60px;
    }

    .ar-bike-panel-img {
        max-height: 240px;
    }
}

@media (max-width: 767px) {

    .ar-split-detail {
   
    font-size: 0.92rem;
 
}

    .ar-navbar {
        padding: 24px 0;
    }

    .logoNavbar {
        width: 250px;
    }

    .logoHero {
        width: 100%;
        max-width: 420px;
    }

    .ar-hero {
        height: 75vh;
    }

    .ar-exp-hero {
        padding-bottom: 40px;
    }

    .ar-hero--mini {
        min-height: 45vh;
        padding: 140px 0 60px;
    }

    #ar-hero {
        height: 100vh;
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    #ar-hero .ar-hero-content {
        text-align: center;
    }

    #ar-hero .ar-hero-buttons {
        justify-content: center;
    }

    .ar-hero-features {
        margin-top: -40px;
    }

    .ar-hero-feature {
        padding: 30px 24px;
    }

    .ar-hero-features .row {
        gap: 0;
    }

    .ar-hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        letter-spacing: 0.06em;
        text-indent: 0.06em;
    }

    .ar-statement {
        padding: 100px 0;
    }

    .ar-locations-cta-text {
        padding: 60px 30px;
    }

    .ar-locations-cta-img {
        min-height: 350px;
    }

    .ar-access {
        padding: 100px 0;
    }

    .ar-exp-performance {
        padding: 120px 0;
    }

    .ar-image-split-content {
        padding: 40px 30px;
    }

    .ar-access-card {
        padding: 36px 24px;
    }

    .ar-intro-logo {
        letter-spacing: 0.3em;
        text-indent: 0.3em;
    }

    .ar-page-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        letter-spacing: 0.06em;
        text-indent: 0.06em;
    }

    .ar-acc-types {
        padding: 100px 0;
    }

    .ar-acc-flow {
        padding: 120px 0;
    }

    .ar-acc-type-item {
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .ar-acc-type-num {
        min-width: 40px;
        font-size: 2rem;
    }

    .ar-cnt-intro {
        padding: 80px 0;
    }

    .ar-cnt-form-section {
        padding: 80px 0 120px;
    }

    .ar-cnt-alt {
        padding-top: 4rem;
        margin-top: 3rem;
        border-top: 1px solid rgba(43, 76, 111, 0.08);
    }

    .ar-footer {
        padding: 60px 0 0;
    }

    .ar-footer-top {
        padding-bottom: 40px;
    }

    .ar-footer-bottom {
        text-align: center;
    }

    .ar-footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 0.3rem;
    }

    .ar-footer-social {
        margin-bottom: 2rem;
    }

    .ar-lok-card--hero {
        height: 45vh;
    }

    .ar-lok-card--half {
        height: 40vh;
    }

    .ar-lok-card-content {
        padding: 24px;
    }

    .ar-lok-card-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .ar-bikes-header {
        padding: 80px 0 40px;
    }

    .ar-bikes-wrap {
        flex-direction: column;
        min-height: auto;
    }

    .ar-bike-panel {
        border-right: none;
        border-bottom: 1px solid rgba(43, 76, 111, 0.05);
    }

    .ar-bike-panel:last-child {
        border-bottom: none;
    }

    .ar-bike-panel-inner {
        padding: 50px 30px 60px;
    }

    .ar-bike-panel-img {
        max-height: 200px;
    }

    .ar-bike-panel-desc {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---- Scroll Indicator ---- */
.ar-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.ar-scroll-indicator span {
    display: block;
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 12px;
    position: relative;
    overflow: hidden;
}

.ar-scroll-indicator span::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    animation: ar-scroll-pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes ar-scroll-pulse {
    0%   { top: -100%; }
    50%  { top: 100%; }
    100% { top: 100%; }
}

.ar-scroll-indicator p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin: 0;
    color: rgba(255, 255, 255, 0.3);
}


/* ---- 2. Manifesto (Brand Statement) ---- */
.ar-manifesto {
    background: var(--ar-ivory);
    padding: 200px 0;
}

.ar-manifesto-heading {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--ar-navy);
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom: 3rem;
}

.ar-manifesto-heading em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0.02em;
    color: rgba(43, 76, 111, 0.55);
    font-size: 1.05em;
}

.ar-manifesto-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(43, 76, 111, 0.45);
    letter-spacing: 0.04em;
    
    max-width: 560px;
    margin: 0 auto;
}


/* ---- 3. Pillars (Experience — editorial numbered list) ---- */
.ar-pillars {
    background: #fff;
    padding: 160px 0;
    border-top: 1px solid rgba(43, 76, 111, 0.06);
}

.ar-pillars-header {
    margin-bottom: 4rem;
}

.ar-pillars-header .ar-label {
    color: var(--ar-blue);
}

.ar-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ar-pillar {
    padding: 0 clamp(20px, 3vw, 48px);
    border-left: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-pillar:first-child {
    padding-left: 0;
    border-left: none;
}

.ar-pillar:last-child {
    padding-right: 0;
}

.ar-pillar-num {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: rgba(43, 76, 111, 0.06);
    line-height: 1;
    display: block;
    margin-bottom: 2rem;
    transition: color 0.6s ease;
}

.ar-pillar:hover .ar-pillar-num {
    color: rgba(78, 173, 197, 0.2);
}

.ar-pillar-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--ar-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.ar-pillar-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: rgba(43, 76, 111, 0.808);
    letter-spacing: 0.04em;
    line-height: 1.85;
    margin: 0;
}


/* ---- 4. Parallax Story (Visual Story — full bleed) ---- */
.ar-parallax-story {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-parallax-story-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.ar-parallax-story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 28, 46, 0.7) 0%,
        rgba(15, 28, 46, 0.4) 50%,
        rgba(15, 28, 46, 0.6) 100%
    );
    z-index: 1;
}

.ar-parallax-story-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.ar-parallax-story-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-transform: uppercase;
    text-wrap: balance;
    margin-bottom: 3rem;
}

.ar-parallax-story-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ar-parallax-story-steps span {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(0.82rem, 1.1vw, 1rem);
    color: rgba(255, 255, 255, 0.822);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ar-step-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-block;
}


/* ---- 5. Destinations (Locations — immersive overlay cards) ---- */
.ar-destinations {
    background: var(--ar-ivory);
    padding: 160px 0;
}

.ar-destinations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ar-destinations-header .ar-label {
    color: var(--ar-blue);
}

.ar-destinations-header .ar-section-title {
    color: var(--ar-navy);
}

.ar-destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.ar-dest-card {
    position: relative;
    display: block;
    height: 65vh;
    overflow: hidden;
    text-decoration: none !important;
    cursor: pointer;
}

.ar-dest-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ar-dest-card:hover .ar-dest-card-bg {
    transform: scale(1.08);
}

.ar-dest-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(15, 28, 46, 0.85) 0%,
        rgba(15, 28, 46, 0.15) 50%,
        rgba(15, 28, 46, 0.05) 100%
    );
    z-index: 1;
    transition: background 0.6s ease;
}

.ar-dest-card:hover .ar-dest-card-overlay {
    background: linear-gradient(
        to top,
        rgba(15, 28, 46, 0.9) 0%,
        rgba(15, 28, 46, 0.25) 55%,
        rgba(15, 28, 46, 0.1) 100%
    );
}

.ar-dest-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 40px 32px;
}

.ar-dest-card-name {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-wrap: balance;
    margin-bottom: 0.8rem;
}

.ar-dest-card-cta {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s, color 0.3s ease;
}

.ar-dest-card:hover .ar-dest-card-cta {
    opacity: 1;
    transform: translateY(0);
    color: var(--ar-blue);
}


/* ---- 6. Product (Schiller — hero split) ---- */
.ar-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: #fff;
}

.ar-product-visual {
    background: var(--ar-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.ar-product-img {
    max-width: 85%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 30px 80px rgba(43, 76, 111, 0.12));
    will-change: transform;
}

.ar-product-info {
    display: flex;
    align-items: center;
    padding: 80px;
}

.ar-product-info-inner {
    max-width: 540px;
}

.ar-product-info .ar-label {
    color: var(--ar-blue);
}

.ar-product-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 900;
    color: var(--ar-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-wrap: balance;
    margin-bottom: 2rem;
}

.ar-product-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: rgba(43, 76, 111, 0.45);
    letter-spacing: 0.04em;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.ar-product-specs {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-product-spec {
    text-align: center;
}

.ar-product-spec-val {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--ar-navy);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ar-product-spec-label {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    color: rgba(43, 76, 111, 0.747);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}


/* ---- 7. Editorial Gallery (asymmetric masonry) ---- */
.ar-editorial-gallery {
    background: var(--ar-ivory);
    padding: 160px 0 0;
}

.ar-editorial-gallery-header {
    margin-bottom: 4rem;
}

.ar-editorial-gallery-header .ar-label {
    color: var(--ar-blue);
}

.ar-editorial-gallery-header .ar-section-title {
    color: var(--ar-navy);
}

.ar-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.ar-masonry-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ar-masonry-col--right {
    margin-top: 80px;
}

.ar-masonry-item {
    position: relative;
    overflow: hidden;
    height: 45vh;
}

.ar-masonry-item--tall {
    height: 65vh;
}

.ar-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ar-masonry-item:hover img {
    transform: scale(1.04);
}


/* ---- 8. Trust (Safety — refined dark) ---- */
.ar-trust {
    background: var(--ar-navy);
    padding: 160px 0;
}

.ar-trust-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 0;
}

.ar-trust-list {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ar-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ar-trust-check {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: var(--ar-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.ar-trust-item-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}

.ar-trust-item-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.651);
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin: 0;
}


/* ---- 9. Final CTA — kicker ---- */
.ar-final-kicker {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.774);
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}


/* ---- 10. FAQ — editorial split layout ---- */
.ar-faq-section {
    background: var(--ar-ivory);
    padding: 160px 0;
}

.ar-faq-section .ar-label {
    color: var(--ar-blue);
}

.ar-faq-heading {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 700;
    color: var(--ar-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin-bottom: 0;
}

.ar-faq-list {
    border-top: 1px solid rgba(43, 76, 111, 0.1);
}

.ar-faq-item {
    border-bottom: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    gap: 2rem;
}

.ar-faq-question span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--ar-navy);
    letter-spacing: 0.02em;
}

.ar-faq-question svg {
    color: rgba(43, 76, 111, 0.25);
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                color 0.3s ease;
}

.ar-faq-item--open .ar-faq-question svg {
    transform: rotate(45deg);
    color: var(--ar-blue);
}

.ar-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                padding 0.6s ease;
}

.ar-faq-item--open .ar-faq-answer {
    max-height: 1000px;
    padding-bottom: 28px;
}

.ar-faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.92rem;
    color: rgba(43, 76, 111, 0.45);
    letter-spacing: 0.04em;
    line-height: 1.9;
    margin: 0;
}


/* ---- Responsive V2 ---- */
@media (max-width: 991px) {

    .ar-manifesto {
        padding: 140px 0;
    }

    .ar-pillars {
        padding: 120px 0;
    }

    .ar-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 0;
    }

    .ar-pillar {
        border-left: none;
        padding: 0;
        border-bottom: 1px solid rgba(43, 76, 111, 0.06);
        padding-bottom: 3rem;
    }

    .ar-pillar:nth-child(odd) {
        padding-right: clamp(20px, 4vw, 40px);
        border-right: 1px solid rgba(43, 76, 111, 0.06);
    }

    .ar-pillar:nth-child(even) {
        padding-left: clamp(20px, 4vw, 40px);
    }

    .ar-pillar:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ar-parallax-story {
        height: 70vh;
    }

    .ar-destinations {
        padding: 120px 0;
    }

    .ar-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ar-dest-card {
        height: 50vh;
    }

    .ar-dest-card-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .ar-product {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ar-product-visual {
        padding: 60px 40px;
        min-height: 400px;
    }

    .ar-product-info {
        padding: 60px 40px;
    }

    .ar-masonry-col--right {
        margin-top: 0;
    }

    .ar-masonry-item {
        height: 35vh;
    }

    .ar-masonry-item--tall {
        height: 50vh;
    }

    .ar-trust {
        padding: 120px 0;
    }

    .ar-faq-section {
        padding: 120px 0;
    }
}

@media (max-width: 767px) {

    .ar-manifesto {
        padding: 100px 0;
    }

    .ar-pillars {
        padding: 80px 0;
    }

    .ar-pillars-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ar-pillar {
        padding: 2.5rem 0 !important;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(43, 76, 111, 0.06);
    }

    .ar-pillar:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
    }

    .ar-pillar:first-child {
        padding-top: 0 !important;
    }

    .ar-pillar-num {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }

    .ar-parallax-story {
        height: 60vh;
    }

    .ar-parallax-story-steps {
        flex-direction: column;
        gap: 0.8rem;
    }

    .ar-step-dot {
        display: none;
    }

    .ar-destinations {
        padding: 80px 0;
    }

    .ar-destinations-grid {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 0 24px;
    }

    .ar-dest-card {
        height: 45vh;
    }

    .ar-dest-card-content {
        padding: 28px 24px;
    }

    .ar-product-visual {
        padding: 40px 24px;
        min-height: 300px;
    }

    .ar-product-img {
        max-height: 280px;
    }

    .ar-product-info {
        padding: 50px 24px;
    }

    .ar-product-specs {
        gap: 2rem;
    }

    .ar-editorial-gallery {
        padding: 80px 0 0;
    }

    .ar-masonry {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .ar-masonry-item {
        height: 40vh;
    }

    .ar-masonry-item--tall {
        height: 55vh;
    }

    .ar-trust {
        padding: 80px 0;
    }

    .ar-trust-title {
        margin-bottom: 3rem;
    }

    .ar-faq-section {
        padding: 80px 0;
    }

    .ar-faq-heading {
        margin-bottom: 2.5rem;
    }

    .ar-faq-question {
        padding: 22px 0;
    }

    .ar-faq-question span {
        font-size: 0.92rem;
    }

    .ar-scroll-indicator {
        bottom: 24px;
    }
}


/* ================================================================
   O NAMA PAGE — ABOUT SPECIFIC STYLES
   ================================================================ */

/* ---- Page wrapper ---- */
#page-o-nama {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--ar-navy);
    overflow-x: clip;
    width: 100%;
}

#page-o-nama ::selection {
    background: var(--ar-navy);
    color: #fff;
}

/* ---- 3-column pillars variant ---- */
.ar-pillars-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ---- Coast section text ---- */
.ar-about-coast-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.04em;
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto;
}

/* ---- Audience section ---- */
.ar-about-audience {
    background: var(--ar-ivory);
    padding: 160px 0;
}

.ar-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ar-audience-card {
    padding: 0 clamp(20px, 3vw, 48px);
    border-left: 1px solid rgba(43, 76, 111, 0.08);
    transition: transform 0.5s ease;
}

.ar-audience-card:first-child {
    padding-left: 0;
    border-left: none;
}

.ar-audience-card:last-child {
    padding-right: 0;
}

.ar-audience-card-icon {
    color: var(--ar-blue);
    margin-bottom: 2rem;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.ar-audience-card:hover .ar-audience-card-icon {
    opacity: 1;
}

.ar-audience-card-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--ar-navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.ar-audience-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    color: rgba(43, 76, 111, 0.712);
    letter-spacing: 0.04em;
    line-height: 1.85;
    margin: 0;
}


/* ---- O nama Responsive ---- */
@media (max-width: 991px) {

    .ar-pillars-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .ar-about-audience {
        padding: 120px 0;
    }

    .ar-audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 0;
    }

    .ar-audience-card {
        border-left: none;
        padding: 0;
        border-bottom: 1px solid rgba(43, 76, 111, 0.06);
        padding-bottom: 3rem;
    }

    .ar-audience-card:nth-child(odd) {
        padding-right: clamp(20px, 4vw, 40px);
        border-right: 1px solid rgba(43, 76, 111, 0.06);
    }

    .ar-audience-card:nth-child(even) {
        padding-left: clamp(20px, 4vw, 40px);
    }

    .ar-audience-card:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {

    #page-o-nama .ar-hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .ar-pillars-grid--3 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ar-about-audience {
        padding: 80px 0;
    }

    .ar-audience-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ar-audience-card {
        padding: 2.5rem 0 !important;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(43, 76, 111, 0.06);
    }

    .ar-audience-card:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
    }

    .ar-audience-card:first-child {
        padding-top: 0 !important;
    }

    .ar-about-coast-text {
        font-size: 0.95rem;
        padding: 0 16px;
    }
}


/* ================================================================
   USLUGE PAGE — SERVICES SPECIFIC STYLES
   ================================================================ */

/* ---- Page wrapper ---- */
#page-usluge {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--ar-navy);
    overflow-x: clip;
    width: 100%;
}

#page-usluge ::selection {
    background: var(--ar-navy);
    color: #fff;
}

/* ---- Product feature list (inside ar-product split) ---- */
.ar-svc-features {
    border-top: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-svc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(43, 76, 111, 0.06);
}

.ar-svc-feature-check {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--ar-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.ar-svc-feature-title {
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ar-navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
}

.ar-svc-feature-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    color: rgba(43, 76, 111, 0.781);
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin: 0;
}

/* ---- Steps section ---- */
.ar-svc-steps {
    background: #fff;
    padding: 160px 0;
    border-top: 1px solid rgba(43, 76, 111, 0.06);
}

.ar-svc-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
}

.ar-svc-step {
    padding: 0 clamp(20px, 3vw, 48px);
    border-left: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-svc-step:first-child {
    padding-left: 0;
    border-left: none;
}

.ar-svc-step:last-child {
    padding-right: 0;
}


/* ---- Usluge Responsive ---- */
@media (max-width: 991px) {

    .ar-svc-steps {
        padding: 120px 0;
    }

    .ar-svc-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {

    #page-usluge .ar-hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .ar-svc-steps {
        padding: 80px 0;
    }

    .ar-svc-steps-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ar-svc-step {
        padding: 2.5rem 0 !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(43, 76, 111, 0.06);
    }

    .ar-svc-step:first-child {
        padding-top: 0 !important;
    }

    .ar-svc-step:last-child {
        border-bottom: none;
        padding-bottom: 0 !important;
    }

    .ar-svc-feature-item {
        padding: 1.2rem 0;
    }
}


/* ================================================================
   LOKACIJE PAGE — LOCATIONS SPECIFIC STYLES
   ================================================================ */

/* ---- Page wrapper ---- */
#page-lokacije {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--ar-navy);
    overflow-x: clip;
    width: 100%;
}

#page-lokacije ::selection {
    background: var(--ar-navy);
    color: #fff;
}

/* ---- Map section ---- */
.ar-lok-map {
    background: var(--ar-ivory);
    padding: 160px 0;
}

.ar-lok-map-wrap {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.ar-lok-map-wrap iframe {
    width: 100%;
    display: block;
}


/* ---- Lokacije Responsive ---- */
@media (max-width: 767px) {

    #page-lokacije .ar-hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .ar-lok-map {
        padding: 80px 0;
    }

    .ar-lok-map-wrap iframe {
        height: 380px;
    }
}


/* ================================================================
   KONTAKT PAGE — CONTACT SPECIFIC STYLES
   ================================================================ */

/* ---- Page wrapper ---- */
#page-kontakt {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--ar-navy);
    overflow-x: clip;
    width: 100%;
}

#page-kontakt ::selection {
    background: var(--ar-navy);
    color: #fff;
}

/* ---- Social links in contact info ---- */
.ar-cnt-social {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(43, 76, 111, 0.08);
}

.ar-cnt-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 76, 111, 0.12);
    color: var(--ar-navy);
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: all 0.4s ease;
}

.ar-cnt-social-link:hover {
    background: var(--ar-navy);
    border-color: var(--ar-navy);
    color: #fff;
}

/* ---- Contact page destination grids ---- */
.ar-cnt-dest-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.ar-cnt-dest-bottom {
    margin-top: 4px;
}

.ar-cnt-locations .ar-dest-card {
    height: 40vh;
}

.ar-cnt-locations .ar-destinations-header {
    margin-bottom: 3rem;
}

.ar-cnt-locations {
    padding-bottom: 80px;
}


/* ---- Kontakt Responsive ---- */
@media (max-width: 991px) {

    .ar-cnt-dest-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .ar-cnt-locations .ar-dest-card {
        height: 35vh;
    }
}

@media (max-width: 767px) {

    #page-kontakt .ar-hero-title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .ar-cnt-dest-grid-3 {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .ar-cnt-locations .ar-dest-card {
        height: 30vh;
    }

    .ar-cnt-locations .ar-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}