@import url("https://fonts.googleapis.com/css?family=IBM%20Plex%20Sans:500|IBM%20Plex%20Sans:300");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

@font-face {
    font-family: "PPNeueMontreal";
    src: url("../../NeueMontreal-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PPNeueMontreal";
    src: url("../../NeueMontreal-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HalvarBreit";
    src: url("../HalvarBreit-Lt.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "HalvarBreitThin";
    src: url("../HalvarBreit-Th.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

:root {
    --m: 4rem;
    --spacing-xl: 12rem;
    --spacing-lg: 8rem;
    --spacing-md: 4rem;
    --spacing-sm: 2rem;
    --letter-clr: #a68f50;
    --letter-bg: #000000;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    background-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'PPNeueMontreal', 'Neue Montreal', 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.main {
    margin-top: 0;
    min-height: 100vh;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 7rem 2rem;
}

.hero-content-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    align-items: center;
}

.elite-header {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 3;
}

.hero .elite-header {
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.elite-title {
    font-size: clamp(5rem, 13vw, 10rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #a68f50;
    margin: 0 0 0.2rem 0;
    padding: 0;
    text-transform: uppercase;
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
    white-space: nowrap;
    text-align: center;
    width: auto;
}

.elite-tagline {
    margin-top: 0.4rem;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
}

.hero-cta-group {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    z-index: 3;
    pointer-events: auto;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    border: 1px solid rgba(166, 143, 80, 0.9);
    background-color: rgba(166, 143, 80, 0.96);
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.12s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hero-cta-button-outline {
    background-color: rgba(255, 255, 255, 0.96);
    color: #a68f50;
}

.hero-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
    border-color: #a68f50;
}

.hero-cta-button-outline:hover {
    background-color: #a68f50;
    color: #ffffff;
}

.elite-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
}

.elite-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    transition: opacity 0.25s ease;
}

.elite-image-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12rem;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
}

.hero-image-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-card-vertical .hero-image-wrapper {
    aspect-ratio: 3 / 4;
}

.hero-image-card-horizontal .hero-image-wrapper {
    aspect-ratio: 16 / 10;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.1);
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-text {
    text-align: center;
}

.hero-image-title {
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000000;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.hero-image-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    line-height: 1.6;
}

.hero-text-column {
    display: none;
}

.hero-cards-section {
    display: none;
}

.elite-section {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 6rem 2rem 0;
    background: #ffffff;
}

.elite-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
}

.elite-section .elite-header {
    margin-top: 4rem;
}

.elite-footer {
    text-align: center;
    margin-top: -4rem;
    position: relative;
    z-index: 3;
    padding-top: 2rem;
}

.elite-description {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #000000;
    margin: -2.5rem 0 0;
    text-transform: uppercase;
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stats-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    border-bottom: none;
    background: transparent;
    position: relative;
    z-index: 2;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    right: calc(50% - 50vw);
    background-color: #ffffff;
    z-index: -1;
}

.stats-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stats-title {
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
    font-size: 25vh;
    font-weight: 300;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #a68f50;
    white-space: nowrap;
    margin: 0 0 0 50vh;
    line-height: 1;
}

.stats-title-top,
.stats-title-bottom {
    margin: 0;
}

.stats-title-line {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.stat-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background-color: #000000;
    aspect-ratio: 4 / 5;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.stat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
    will-change: transform;
}

.stat-item:hover .stat-image {
    transform: scale(1.1);
}

.stat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.stat-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: transform 0.3s ease;
    display: inline-block;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
}

.island-section {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto 0;
    padding: 6rem 0 6rem;
    overflow: hidden;
    background: #ffffff;
}

.island-container {
    position: relative;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4rem;
}

.island-split {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.island-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.island-image-box {
    position: relative;
    width: 70%;
    max-width: 900px;
    min-height: 400px;
    overflow: hidden;
}

.island-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    overflow: hidden;
}

.island-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.island-image-box:hover .island-img {
    transform: scale(1.08);
}

.island-image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.island-image-box:hover .island-image-shine {
    left: 100%;
}

.island-right {
    position: relative;
    width: 100%;
    pointer-events: auto;
    display: flex;
    justify-content: center;
}

.island-content-box {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.island-header {
    position: relative;
    padding: 0 0 1.5rem 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.island-number {
    display: none;
}

.island-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: -0.08em;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
}

.island-text-wrapper {
    position: relative;
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.island-text-item {
    position: relative;
    padding-left: 0;
}

.island-text-large {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.9);
    margin: 0;
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
}

.island-text-normal {
    font-size: clamp(1.125rem, 2vw, 1.4rem);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
}

.nature-duo-section {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 6rem 4rem 4rem;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.nature-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
}

.nature-card {
    border-radius: 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 3rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.nature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(166, 143, 80, 0.2);
    border-color: #a68f50;
}

.nature-card-title {
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 200;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1.05;
    position: relative;
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nature-card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #a68f50, #a68f50, #a68f50);
    border-radius: 0 0.25rem 0.25rem 0;
    box-shadow: 0 0 15px rgba(166, 143, 80, 0.4);
}

.nature-card-text {
    font-size: clamp(1.125rem, 2vw, 1.4rem);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.8);
}

.nature-description {
    margin-top: 11rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.eco-content-section {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 6rem 4rem;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.eco-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.eco-content-card {
    border-radius: 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.eco-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(166, 143, 80, 0.15);
    border-color: #a68f50;
}

.eco-content-title {
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.05;
    position: relative;
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin: 0;
    color: #000000;
}

.eco-content-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #a68f50, #a68f50, #a68f50);
    border-radius: 0 0.2rem 0.2rem 0;
    box-shadow: 0 0 10px rgba(166, 143, 80, 0.3);
}

.eco-content-text {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}

.park-section {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 6rem 4rem;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.park-content {
    max-width: 900px;
    margin: 0 auto;
}

.park-title {
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 200;
    margin-bottom: 2rem;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    line-height: 1.05;
    position: relative;
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.park-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #a68f50, #a68f50, #a68f50);
    border-radius: 0 0.25rem 0.25rem 0;
    box-shadow: 0 0 15px rgba(166, 143, 80, 0.4);
}

.park-text {
    font-size: clamp(1.125rem, 2vw, 1.4rem);
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.8);
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
}

.buttons-section {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.eco-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0;
    border: 1px solid #a68f50;
    background-color: #ffffff;
    color: #a68f50;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.18s ease;
    text-decoration: none;
}

.eco-button:hover {
    background-color: #a68f50;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(166, 143, 80, 0.3);
}

.final-section {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 6rem 4rem var(--spacing-xl);
    text-align: center;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.final-title {
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
    font-size: clamp(5rem, 13vw, 10rem);
    font-weight: 300;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #a68f50;
    line-height: 1.2;
}

.final-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
}

.form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    padding: 2rem;
}

.form-modal.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-modal-content {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    max-width: 600px;
    width: 100%;
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.form-modal.active .form-modal-content {
    transform: scale(1) translateY(0);
}

.form-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.form-modal-close:hover {
    opacity: 0.6;
}

.form-modal-close span {
    position: absolute;
    width: 1.5rem;
    height: 1px;
    background-color: #000000;
    transition: transform 0.3s ease;
}

.form-modal-close span:first-child {
    transform: rotate(45deg);
}

.form-modal-close span:last-child {
    transform: rotate(-45deg);
}

.form-modal-header {
    margin-bottom: 3rem;
    text-align: left;
}

.form-modal-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 200;
    letter-spacing: -0.05em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #000000;
    line-height: 1.05;
    position: relative;
    padding-left: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-family: 'HalvarBreit', 'PPNeueMontreal', 'Neue Montreal', sans-serif;
}

.form-modal-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #a68f50, #a68f50, #a68f50);
    border-radius: 0 0.25rem 0.25rem 0;
    box-shadow: 0 0 15px rgba(166, 143, 80, 0.3);
}

.form-modal-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000000;
}

.form-input {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-color: transparent;
    font-size: 1.125rem;
    font-weight: 300;
    font-family: inherit;
    color: #000000;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-input:focus {
    border-bottom-color: #000000;
}

.form-input:valid {
    border-bottom-color: rgba(0, 0, 0, 0.5);
}

.form-submit {
    margin-top: 1rem;
    padding: 1.25rem 3rem;
    border: 1px solid #a68f50;
    background-color: #a68f50;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: fit-content;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: #ffffff;
    color: #a68f50;
}

.form-submit:active {
    transform: scale(0.98);
}

.form-success {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-left: 3px solid #000000;
    font-size: 1rem;
    font-weight: 300;
    color: #000000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

@media screen and (max-width: 1400px) {
    :root {
        --spacing-xl: 8rem;
        --spacing-lg: 6rem;
    }
}

@media screen and (max-width: 1000px) {
    :root {
        --m: 3rem;
        --spacing-xl: 6rem;
        --spacing-lg: 4rem;
        --spacing-md: 3rem;
    }

    .hero-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }

    .nature-duo-section,
    .park-section,
    .buttons-section,
    .final-section,
    .eco-content-section {
        padding: 4rem 2rem;
    }

    .nature-duo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .nature-description {
        margin-top: 4rem;
    }

    .nature-duo-section {
        padding-bottom: 4rem;
    }

    .eco-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 700px) {
    .hero {
        padding: 6rem 1.5rem 2rem;
        min-height: auto;
    }

    .hero-content-wrapper {
        gap: 2rem;
    }

    .elite-title {
        font-size: clamp(3rem, 12vw, 6rem);
    }

    .elite-tagline {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .hero .elite-header {
        margin-bottom: 2rem;
    }

    .hero-images-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .hero-image-wrapper {
        aspect-ratio: 4 / 3;
    }

    .hero-image-title {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
    }

    .hero-image-subtitle {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }

    .stats-title {
        font-size: clamp(4rem, 18vw, 6rem);
        white-space: normal;
        margin: 0;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .hero-cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.8rem;
        font-size: 0.75rem;
    }

    .elite-section {
        padding: 3rem 1.5rem 0;
    }

    .elite-description {
        font-size: clamp(1.25rem, 4vw, 1.6rem);
        margin: 0;
    }

    .nature-duo-section {
        padding: 3rem 1.5rem 3rem;
    }

    .nature-duo-grid {
        gap: 2rem;
    }

    .nature-card {
        padding: 2rem 1.5rem;
    }

    .nature-card-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding-left: 1.5rem;
    }

    .nature-card-title::before {
        width: 3px;
    }

    .nature-card-text {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .nature-description {
        margin-top: 3rem;
    }

    .nature-description .elite-description {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem);
        line-height: 1.6;
    }

    .eco-content-section {
        padding: 3rem 1.5rem;
    }

    .eco-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .eco-content-card {
        padding: 1.5rem;
    }

    .eco-content-title {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        padding-left: 1.25rem;
    }

    .eco-content-title::before {
        width: 3px;
    }

    .eco-content-text {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .final-section {
        padding: 4rem 1.5rem;
    }

    .final-title {
        font-size: clamp(3rem, 12vw, 6rem);
        margin-bottom: 1rem;
    }

    .final-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .stats-title-wrapper {
        margin-bottom: 1.5rem;
    }

    .form-modal-content {
        padding: 2.5rem 1.5rem;
        max-width: 95%;
    }

    .form-modal-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        padding-left: 1.5rem;
    }

    .form-modal-title::before {
        width: 3px;
    }
}

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

    .island-container {
        padding: 0 1.5rem;
    }

    .island-image-box {
        min-height: 300px;
    }

    .form-modal-content {
        padding: 3rem 2rem;
    }

    .form-modal-close {
        top: 1.5rem;
        right: 1.5rem;
    }
}
