/* ========================================
   CSS Reset & Base Styles
   ======================================== */

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

:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-cream: #F8F5EE;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-400: #9CA3AF;
    --color-brown-900: #030712;
    --color-brown-700: #56382D;
    --color-brown-600: #634030;
    --color-brown-400: #91653D;
    --color-brown-300: #754C33;
    --color-gold: #B78F55;
    --color-gold-light: #A97E49;
    --color-gold-lighter: #DDCDAB;
    --color-gold-pale: #EDE6D4;

    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Font Sizes */
    --text-xs: 0.8125rem;     /* 13px */
    --text-sm: 1rem;          /* 16px */
    --text-base: 1.219rem;    /* 19.5px */
    --text-lg: 1.525rem;      /* 24.4px */
    --text-xl: 1.9rem;        /* 30.4px */
    --text-2xl: 2.38rem;      /* 38.11px */
    --text-3xl: 2.975rem;     /* 47.6px */
    --text-4xl: 3.725rem;     /* 59.6px */
    --text-5xl: 4.656rem;     /* 74.5px */

    /* Spacing */
    --spacing-xs: 0.5rem;     /* 8px */
    --spacing-sm: 0.75rem;    /* 12px */
    --spacing-md: 1rem;       /* 16px */
    --spacing-lg: 1.25rem;    /* 20px */
    --spacing-xl: 1.5rem;     /* 24px */
    --spacing-2xl: 2rem;      /* 32px */
    --spacing-3xl: 2.5rem;    /* 40px */
    --spacing-4xl: 4rem;      /* 64px */
    --spacing-5xl: 5rem;      /* 80px */
    --spacing-6xl: 8rem;      /* 128px */

    /* Shadows */
    --shadow-sm: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Border Radius */
    --radius-sm: 0.75rem;     /* 12px */
    --radius-md: 1.25rem;     /* 20px */
    --radius-lg: 2rem;        /* 32px */

    /* Container */
    --container-max: 1920px;
    --container-padding: 4.375rem; /* 70px */
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-brown-900);
    background-color: var(--color-gray-100);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

input, select, textarea {
    font-family: inherit;
}

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

/* ========================================
   Sticky Site Header
   ======================================== */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-gray-50);
    border-bottom: 2px solid var(--color-gold-light);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    width: 100%;
}

.site-header__container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    padding: var(--spacing-lg) var(--container-padding);
    align-items: center;
}

.site-header__left {
    display: flex;
    align-items: center;
    width: 100%;
}

.site-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.site-header__logo img {
    width: auto;
    height: auto;
    max-height: 50px;
}

.site-header__form {
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--color-gray-100);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6);
    z-index: 0;
}

body.body--gracias .hero::before {
    filter: brightness(0.3); /* Even darker background for the gracias page */
}

.hero__container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--spacing-6xl) var(--container-padding);
    z-index: 1;
    display: flex; /* Added for flexbox layout */
    gap: var(--spacing-4xl); /* Added gap between text and form */
    align-items: flex-start; /* Align items to the top */
}

.hero__text {
    position: relative;
    max-width: 50rem;
    flex: 1 1 50%; /* Take 50% width */
    text-align: center; /* Center content horizontally */
}

.hero__img {
    width: 140px;
    height: auto;
    margin-left: 35%;
}

.hero__form {
    flex: 1 1 50%; /* Take 50% width */
    max-width: 30rem; /* Limit form width for better aesthetics */
    margin-top: 5rem; /* Adjust as needed to align with text content */
}

/* Countdown Timer */
.countdown {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    font-family: var(--font-primary);
    font-weight: 600;
}

.countdown__item {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.countdown__value {
    font-size: var(--text-2xl);
    color: var(--color-brown-600);
    line-height: 1.2;
}

.countdown__label {
    font-size: var(--text-2xl);
    color: var(--color-brown-600);
    line-height: 1.2;
}

.countdown__separator {
    font-size: var(--text-2xl);
    color: var(--color-brown-400);
    line-height: 1.2;
}

.hero__decoration {
    position: absolute;
    top: -2rem;
    right: -4rem;
    width: 11.41rem;
    height: 11.28rem;
    pointer-events: none;
    opacity: 0.8;
}

.hero__img {
    width: 140px;
    height: auto;
}

.hero__title {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.219;
    color: var(--color-white);
    margin-bottom: var(--spacing-2xl);
}

.hero__subtitle,
.hero__description {
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-white);
    margin-bottom: var(--spacing-2xl);
}

.hero__benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero__benefit {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.hero__benefit img {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.hero__benefit span {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.219;
}

/* ========================================
   Form Section
   ======================================== */

.form-card {
    background-color: var(--color-gold-light);
    border: 4px solid var(--color-brown-300);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-input,
.form-select {
    width: 100%;
    padding: var(--spacing-md);
    background-color: var(--color-cream);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-brown-900);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

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

.form-input:focus,
.form-select:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
    box-shadow: var(--shadow-md);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-lg) center;
    background-size: 1.5rem;
    padding-right: 3rem;
    cursor: pointer;
}

/* Fieldset for Radio Buttons */
.form-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-legend {
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
    line-height: 1.5;
}

.form-radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.form-radio-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-family: var(--font-secondary);
    font-size: var(--text-sm);
    color: var(--color-white);
    font-weight: 400;
    line-height: 1.5;
}

.form-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--color-brown-700);
    border-radius: 0.375rem;
    background-color: transparent;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.form-radio-label input[type="radio"]:checked + .radio-custom {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.form-radio-label input[type="radio"]:focus + .radio-custom {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

/* Submit Button */
.form-submit {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.219;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--color-brown-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-submit:active {
    transform: translateY(0);
}

/* Kommo Form Container */
.kommo-form-container {
    width: 50% !important;
    margin: var(--spacing-2xl) auto 0 !important;
}

/* ========================================
   Location Section
   ======================================== */

.location {
    position: relative;
    background-color: var(--color-white);
    padding: var(--spacing-6xl) var(--container-padding);
    overflow: hidden;
}

.location__container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    gap: var(--spacing-2xl);
    align-items: flex-start;
}

.location__content {
    flex: 0 0 30%;
    max-width: 30%;
    margin-bottom: 0;
}

.location__title {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 500;
    line-height: 1.219;
    color: var(--color-brown-900);
    margin-bottom: var(--spacing-4xl);
}

.location__points {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.location__point {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.location__point img {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}

.location__point span {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-brown-900);
}

/* Google Maps */
.location__map {
    flex: 0 0 40%;
    max-width: 40%;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location__map iframe {
    width: 100%;
    height: 34.125rem;
    border: none;
}

.location__secondary {
    flex: 0 0 30%;
    max-width: 30%;
    margin-top: 0;
}

.location__subtitle {
    font-family: var(--font-primary);
    font-size: var(--text-lg);
    font-weight: 500;
    line-height: 1.219;
    color: var(--color-brown-900);
    margin-bottom: var(--spacing-4xl);
    max-width: 100%;
}

.location__points--secondary {
    margin-top: var(--spacing-4xl);
}

/* Location Images */
.location__image {
    position: absolute;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.location__image--1 {
    width: 16.25rem;
    height: 16.313rem;
    top: 39.688rem;
    left: 38.375rem;
}

.location__image--2 {
    width: 16.25rem;
    height: 16.375rem;
    top: 9rem;
    left: 66.313rem;
}

/* ========================================
   Model Section
   ======================================== */

.model {
    position: relative;
    background-color: var(--color-white);
    padding: var(--spacing-md) var(--container-padding);
    overflow: hidden;
}

.model__container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.model__label {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 500;
    line-height: 1.219;
    color: var(--color-brown-900);
    margin-bottom: -2rem;
}

.model__watermark {
    font-family: var(--font-secondary);
    font-size: 20rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.325em;
    text-align: center;
    color: var(--color-gold-lighter);
    opacity: 0.75;
    user-select: none;
    pointer-events: none;
}

.model__content {
    display: grid;
    grid-template-columns: 35% 30% 35%;
    gap: 0;
    align-items: start;
    width: 100%;
}

.model__spacer {
    width: 100%;
}

.model__title {
    font-family: var(--font-primary);
    font-size: var(--text-2xl);
    font-weight: 600;
    line-height: 1.219;
    color: var(--color-brown-900);
}

.model__features {
    list-style: none;
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.219;
    color: var(--color-brown-900);
}

.model__features li {
    padding: var(--spacing-xs) 0;
}

.model__features li::before {
    content: '• ';
    color: var(--color-gold);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

.model__images-wrapper {
    position: relative;
}

.model__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
}

.model__arrow:hover {
    background: white;
}

.model__arrow--left {
    left: 1rem;
}

.model__arrow--right {
    right: 1rem;
}

.model__images {
    display: flex;
    flex-wrap: nowrap; /* Force single row */
    gap: 0.5rem;
    margin-top: var(--spacing-4xl);
    overflow-x: auto; /* Enable horizontal scrolling */
    padding-bottom: 1rem; /* Space for scrollbar */
    align-items: stretch; /* Ensure all items stretch to fill the container height */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.model__images::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.model__images img {
    flex-shrink: 0; /* Prevent images from shrinking */
    width: 250px; /* Fixed width for each image */
    height: 200px; /* Fixed height for all images */
    object-fit: cover;
    border-radius: var(--radius-md);
    /* box-shadow: var(--shadow-lg); Removed as requested */
    transition: transform 0.3s ease;
}

.model__images img:hover {
    transform: scale(1.02);
}

.model-img-1, .model-img-2, .model-img-3, .model-img-4, .model-img-5, .model-img-6, .model-img-7 {
    /* Remove specific grid positioning */
    grid-column: unset;
    grid-row: unset;
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
    position: relative;
    background-color: var(--color-white);
    padding: var(--spacing-6xl) var(--container-padding);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-5xl);
    text-align: center;
    z-index: 2;
}

.cta__decoration {
    position: absolute;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.cta__decoration--1 {
    right: -9.938rem;
    top: 0;
    width: 38.75rem;
    height: 51.529rem;
}

.cta__decoration--2 {
    left: -14.938rem;
    bottom: 17.625rem;
    width: 38.75rem;
    height: 51.529rem;
}

.cta__hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4xl);
    flex-wrap: wrap;
}

.cta__logo {
    width: 12rem;
    height: auto;
    flex-shrink: 0;
}

.cta__title {
    font-family: var(--font-primary);
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.219;
    color: var(--color-brown-900);
    text-align: left;
}

.cta__description {
    font-family: var(--font-primary);
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.219;
    color: var(--color-brown-900);
    max-width: 92.5rem;
}

.cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-4xl);
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: var(--text-xl);
    font-weight: 600;
    line-height: 1.219;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.cta__button:hover {
    background-color: var(--color-brown-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta__button:active {
    transform: translateY(0);
}

.cta__watermark {
    font-family: var(--font-secondary);
    font-size: 7.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.008333em;
    text-align: center;
    color: var(--color-gold-lighter);
    opacity: 0.75;
    user-select: none;
    pointer-events: none;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Desktop Large (1920px+) - Default styles above */

/* Desktop (1440px - 1919px) */
@media (max-width: 119.9375rem) {
    :root {
        --container-padding: 3.5rem;
    }

    .model__watermark {
        font-size: 16rem;
    }

    .cta__watermark {
        font-size: 6rem;
    }
}

/* Laptop (1024px - 1439px) */
@media (max-width: 89.9375rem) {
    :root {
        --container-padding: 2.5rem;
        --text-5xl: 3.5rem;
        --text-4xl: 2.8rem;
        --text-3xl: 2.2rem;
        --text-2xl: 2rem;
        --text-xl: 1.5rem;
        --text-lg: 1.25rem;
    }

    .site-header__container {
        gap: var(--spacing-lg);
    }

    .site-header__left {
        justify-content: center;
    }

    .site-header__right {
        justify-content: flex-end;
    }

    .model__watermark {
        font-size: 12rem;
    }

    .model__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .model__spacer {
        display: none;
    }

    .cta__watermark {
        font-size: 4.5rem;
    }

    .cta__hero {
        flex-direction: column;
    }

    .cta__title {
        text-align: center;
    }

  
}

/* Tablet (768px - 1023px) */
@media (max-width: 63.9375rem) {
    :root {
        --container-padding: 2rem;
        --spacing-6xl: 4rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
        --text-3xl: 1.75rem;
        --text-2xl: 1.5rem;
        --text-xl: 1.25rem;
        --text-lg: 1.125rem;
    }

    .site-header__container {
        gap: var(--spacing-lg);
    }

    .site-header__left {
        justify-content: center;
        text-align: center;
    }

    .site-header__right {
        justify-content: center;
    }

    .hero__container {
        flex-direction: column; /* Stack text and form on tablet */
        align-items: center;
    }

    .hero__text,
    .hero__form {
        flex: 1 1 100%; /* Take full width on tablet */
        max-width: 100%; /* Ensure full width */
    }

    .hero__form {
        margin-top: var(--spacing-4xl); /* Adjust margin for stacking */
    }

    .hero__decoration {
        right: 0;
        width: 8rem;
        height: 8rem;
    }

    .model {
        padding: var(--spacing-4xl) var(--container-padding); /* Reduced padding-top */
    }

    .model__watermark {
        font-size: 8rem;
    }

    .model__content {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Two columns for tablet */
        gap: var(--spacing-2xl); /* Add some gap */
    }

    .location__container {
        flex-direction: column; /* Stack location items in 3 rows */
        align-items: center;
    }

    .location__content,
    .location__map,
    .location__secondary {
        flex: 1 1 100%; /* Take full width */
        max-width: 100%; /* Ensure full width */
        margin-bottom: var(--spacing-4xl); /* Add spacing between stacked items */
    }

    .location__map {
        margin-top: var(--spacing-4xl); /* Adjust margin for stacking */
    }

    .cta {
        padding: var(--spacing-4xl) var(--container-padding); /* Reduced padding-top */
    }

    .cta__watermark {
        font-size: 3rem;
    }

    .cta__hero {
        flex-direction: column;
    }

    .cta__title {
        text-align: center;
    }

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

    .location__image {
        display: none;
    }

    .location__map iframe {
        height: 25rem;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 47.9375rem) {
    :root {
        --container-padding: 1.5rem;
        --spacing-6xl: 3rem;
        --text-5xl: 2rem;
        --text-4xl: 1.5rem;
        --text-3xl: 1.5rem;
        --text-2xl: 1.25rem;
        --text-xl: 1.125rem;
        --text-lg: 1rem;
        --text-base: 1rem;
    }

    .site-header__container {
        padding: var(--spacing-md);
    }

    .site-header__logo img {
        max-height: 40px; /* Smaller logo */
    }

    .countdown {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .countdown__value,
    .countdown__label,
    .countdown__separator {
        font-size: var(--text-2xl); /* Slightly larger countdown */
    }

    .model {
        padding: var(--spacing-4xl) var(--container-padding); /* Reduced padding-top */
    }

    .model__watermark {
        font-size: 4rem;
    }

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

    .model__spacer {
        display: none;
    }

    .location__container {
        flex-direction: column; /* Stack location items in 3 rows */
        align-items: center;
    }

    .location__content,
    .location__map,
    .location__secondary {
        flex: 1 1 100%; /* Take full width */
        max-width: 100%; /* Ensure full width */
        margin-bottom: var(--spacing-4xl); /* Add spacing between stacked items */
    }

    .location__map {
        margin-top: var(--spacing-4xl); /* Adjust margin for stacking */
    }

    .cta {
        padding: var(--spacing-4xl) var(--container-padding); /* Reduced padding-top */
    }

    .cta__watermark {
        font-size: 2rem;
    }

    .cta__decoration--1,
    .cta__decoration--2 {
        width: 20rem;
        height: auto;
    }

    .cta__hero {
        gap: var(--spacing-lg);
    }

    .cta__logo {
        width: 8rem;
    }

    .model__images {
        grid-template-columns: 1fr; /* Stack images on mobile */
    }

    .location__map iframe {
        height: 18.75rem;
    }

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

    .kommo-form-container {
        width: 100% !important;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 29.9375rem) {
    :root {
        --container-padding: 1rem;
        --spacing-6xl: 2rem;
        --spacing-5xl: 2.5rem;
        --spacing-4xl: 2rem;
        --text-5xl: 1.75rem;
        --text-4xl: 1.25rem;
        --text-3xl: 1.25rem;
        --text-2xl: 1.125rem;
        --text-xl: 1rem;
        --text-lg: 0.9375rem;
    }

    .site-header__logo img {
        max-height: 50px;
    }

    .model__watermark {
        font-size: 3rem;
        letter-spacing: 0.1em;
    }

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

    .model__spacer {
        display: none;
    }

    .cta__watermark {
        font-size: 1.5rem;
    }

    .cta__logo {
        width: 6rem;
    }

    .hero__benefit img {
        width: 2rem;
        height: 2rem;
    }

    .location__point img {
        width: 2rem;
        height: 2rem;
    }
}

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

/* Print Styles */
@media print {
    .hero::before {
        filter: none;
    }

    .cta__decoration,
    .hero__decoration {
        display: none;
    }
}