/* =====================================================
   BAHAMAS LANDING PAGE - STYLES
   HausHirsch GmbH - 2025
   ===================================================== */

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

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-100: #f8f8f8;
    --color-gray-200: #e5e5e5;
    --color-gray-400: #999999;
    --color-gray-600: #666666;
    --color-gray-800: #333333;

    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;

    --section-spacing: 6rem;
    --container-max: 1200px;
    --container-wide: 1400px;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s ease;
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 4rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-black);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 300; letter-spacing: -0.03em; line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.02em; line-height: 1.2; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.3; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ==================== BUTTONS ==================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-black);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-gray-800);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-black);
}

.btn--white:hover {
    background: var(--color-gray-100);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-gray-200);
}

.btn--outline:hover {
    border-color: var(--color-black);
}

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
}

.btn--nav {
    padding: 0.75rem 1.5rem;
}

/* ==================== NAVIGATION ==================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo img {
    width: 200px;
    max-width: 200px;
    height: auto;
}

@media (max-width: 768px) {
    .navbar__logo img {
        width: 150px;
        max-width: 150px;
    }

    .btn--nav .btn-text-full {
        display: none;
    }

    .btn--nav .btn-text-short {
        display: inline;
    }
}

@media (min-width: 769px) {
    .btn--nav .btn-text-short {
        display: none;
    }
}

.navbar:not(.scrolled) .navbar__logo img {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar__logo img {
    filter: none;
}

.navbar:not(.scrolled) .btn--primary {
    background: var(--color-white);
    color: var(--color-black);
}

/* ==================== HERO ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__bg .image-wrapper {
    position: absolute;
    inset: 0;
}

.hero__bg .skeleton {
    border-radius: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.5) 100%
    );
}

.hero__content {
    text-align: center;
    color: var(--color-white);
    padding: var(--space-2xl);
    max-width: 900px;
}

.hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: var(--space-sm);
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.hero__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero__cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-white);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ==================== TRUST BAR ==================== */

.trust-bar {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-xl) 0;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.trust-item__number {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.trust-item__label {
    font-size: 0.8rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .trust-bar__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== SECTION LABEL ==================== */

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray-600);
    margin-bottom: var(--space-sm);
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--color-gray-600);
    font-size: 1.1rem;
}

.section-header--center {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== SPLIT SECTION ==================== */

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

.split-section__image {
    position: relative;
    overflow: hidden;
    background: var(--color-gray-100);
    min-height: 500px;
}

.split-section__image .image-wrapper {
    position: absolute;
    inset: 0;
}

.split-section__image .skeleton {
    border-radius: 0;
}

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

.split-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl) var(--space-3xl);
}

.split-section__content h2 {
    margin-bottom: var(--space-lg);
}

.split-section__content p {
    color: var(--color-gray-600);
}

.split-section--reverse .split-section__image {
    order: 2;
}

.split-section--reverse .split-section__image {
    background: var(--color-white);
}

.split-section--dark {
    background: var(--color-gray-100);
}

.split-section--dark .split-section__content {
    background: var(--color-gray-100);
}

.split-section--dark .split-section__image {
    background: var(--color-gray-200);
}

@media (max-width: 968px) {
    .split-section {
        grid-template-columns: 1fr;
    }

    .split-section__image {
        min-height: 350px;
    }

    .split-section--reverse .split-section__image {
        order: 0;
    }

    .split-section__content {
        padding: var(--space-2xl) var(--space-lg);
    }
}

/* ==================== CHECK LIST ==================== */

.check-list {
    list-style: none;
    margin: var(--space-lg) 0;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--color-gray-800);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: 600;
}

/* ==================== CTA BANNER ==================== */

.cta-banner {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__content h2 {
    margin-bottom: var(--space-sm);
}

.cta-banner__content p {
    opacity: 0.8;
    margin-bottom: var(--space-lg);
    margin-left: auto;
    margin-right: auto;
}

.cta-banner__content--center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__content--center p {
    margin-left: auto;
    margin-right: auto;
}

.cta-banner--large {
    padding: var(--section-spacing) 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-banner__bg .image-wrapper {
    position: absolute;
    inset: 0;
}

.cta-banner__bg .skeleton {
    border-radius: 0;
}

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

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0,0,0,0.6);
}

/* ==================== USP SECTION ==================== */

.usp-section {
    padding: var(--section-spacing) 0;
    background: var(--color-gray-100);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.usp-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.usp-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
}

.usp-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-black);
}

.usp-card h3 {
    margin-bottom: var(--space-sm);
}

.usp-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ==================== PROJECTS SECTION ==================== */

.projects-section {
    padding-top: var(--section-spacing);
}

.project {
    margin-bottom: var(--space-3xl);
}

.project__hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.project__hero > .image-wrapper {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.project__hero .skeleton {
    border-radius: 0;
}

.project__hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
}

.project__hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.project__hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    padding: var(--space-2xl);
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.project__badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.project__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: var(--space-xs);
}

.project__tagline {
    font-size: 1.1rem;
    opacity: 0.8;
}

.project__details {
    padding: var(--space-2xl) 0;
    background: var(--color-white);
}

.project--alt .project__details {
    background: var(--color-gray-100);
}

.project__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.project__info h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.project__info h3:first-child {
    margin-top: 0;
}

.project__info p {
    color: var(--color-gray-600);
}

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

/* ==================== SPECS CARD ==================== */

.specs-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.project--alt .specs-card {
    background: var(--color-white);
}

.specs-card__header {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-lg);
    text-align: center;
}

.specs-card__price {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.specs-card__label {
    font-size: 0.85rem;
    opacity: 0.7;
}

.specs-card__list {
    list-style: none;
    padding: var(--space-md);
}

.specs-card__list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.specs-card__list li:last-child {
    border-bottom: none;
}

.specs-card__list span {
    color: var(--color-gray-600);
}

.specs-card__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.specs-card__table th,
.specs-card__table td {
    padding: var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--color-gray-200);
}

.specs-card__table th {
    font-weight: 500;
    color: var(--color-gray-600);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.specs-card__table td:last-child {
    font-weight: 600;
}

.specs-card__actions {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ==================== PROJECT GALLERY ==================== */

.project__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.project__gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.project__gallery-item .image-wrapper {
    width: 100%;
    height: 100%;
}

.project__gallery-item .skeleton {
    border-radius: 0;
}

.project__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.project__gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .project__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== STATS ==================== */

.stats-row {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

@media (max-width: 576px) {
    .stats-row {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat {
        text-align: left;
    }
}

/* ==================== CONTACT SECTION ==================== */

.contact-section {
    padding: var(--section-spacing) 0;
    background: var(--color-gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-form-wrapper h2 {
    margin-bottom: var(--space-sm);
}

.contact-form-wrapper > p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
}

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

/* ==================== FORM ==================== */

.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form__row {
    display: flex;
    flex-direction: column;
}

.form__row--half {
    flex-direction: row;
    gap: var(--space-md);
}

.form__row--half > * {
    flex: 1;
}

.form__input,
.form__select {
    width: 100%;
    padding: 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    transition: border-color var(--transition);
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--color-black);
}

.form__input::placeholder {
    color: var(--color-gray-400);
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form__checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-black);
}

.form__checkbox label {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.form__checkbox a {
    text-decoration: underline;
}

.form__honeypot {
    position: absolute;
    left: -9999px;
}

.form__message {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    display: none;
}

.form__message--success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.form__message--error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 576px) {
    .form__row--half {
        flex-direction: column;
    }
}

/* ==================== CONTACT CARD ==================== */

.contact-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-card__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--space-md);
}

.contact-card__image .image-wrapper {
    width: 100%;
    height: 100%;
}

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

.contact-card h3 {
    margin-bottom: var(--space-xs);
}

.contact-card > p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-lg);
}

.contact-card__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-card__details a,
.contact-card__details span {
    color: var(--color-gray-600);
    font-size: 0.95rem;
}

.contact-card__details a:hover {
    color: var(--color-black);
}

/* ==================== FOOTER ==================== */

.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer__logo {
    width: 160px;
    filter: brightness(0) invert(1);
    margin-bottom: var(--space-md);
}

.footer__brand p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
}

.footer__links h4,
.footer__social h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    color: var(--color-gray-400);
}

.footer__links a {
    display: block;
    color: var(--color-gray-400);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    transition: color var(--transition);
}

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

.footer__social-links {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: background var(--transition);
}

.footer__social-links a:hover {
    background: rgba(255,255,255,0.2);
}

.footer__social-links svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__bottom p {
    color: var(--color-gray-400);
    font-size: 0.85rem;
}

.footer__disclaimer {
    max-width: 500px;
    font-size: 0.75rem !important;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__logo {
        margin: 0 auto var(--space-md);
    }

    .footer__social-links {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__disclaimer {
        margin: 0 auto;
    }
}

/* ==================== SKELETON LOADER ==================== */

.skeleton {
    position: relative;
    overflow: hidden;
    background: var(--color-gray-200);
}

.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.4) 50%,
        transparent 100%
    );
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lazy-image.is-loaded {
    opacity: 1;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.image-wrapper .skeleton {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.image-wrapper .skeleton.is-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* ==================== ZOOM EFFECT ==================== */

.zoom-on-scroll {
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero__bg img,
.cta-banner__bg img,
.project__hero > img {
    transition: transform 0.3s ease-out;
}
