body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafafa;
    color: #222;
}

/* HERO */

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero.small {
    height: 60vh;
}

.overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0,0,0,0.55), rgba(0,0,0,0.8));
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 880px;
    padding: 0 20px;
}

.sub {
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 12px;
}

h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
}

.hero .btn {
    margin-top: 26px;
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
}

/* BUTTONS */

.btn {
    display: inline-block;
    padding: 13px 34px;
    background: #ffffff;
    color: #111;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn.big {
    padding: 15px 44px;
    font-size: 17px;
}

.btn.full {
    width: 100%;
    text-align: center;
}

.btn:hover {
    background: #111;
    color: #fff;
    transform: translateY(-1px);
}

/* LAYOUT SECTIONS */

section {
    padding: 80px 10%;
}

section .content {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

section .content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

section .content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* FEATURES */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    padding-top: 20px;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 26px 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* GALLERY */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    padding-top: 20px;
}

.gallery img {
    width: 100%;
    display: block;
    border-radius: 18px;
    object-fit: cover;
    min-height: 220px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.26);
}

/* CTA */

.cta {
    text-align: center;
}

/* FORM */

.form-section {
    padding-bottom: 90px;
}

.form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffff;
    border-radius: 22px;
    padding: 30px 26px 34px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}

.form label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #555;
}

input, textarea, select {
    margin-top: 6px;
    padding: 13px 14px;
    border-radius: 10px;
    border: 1px solid #d2d2d2;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    background: #fafafa;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

input:focus, textarea:focus, select:focus {
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
    background: #ffffff;
}

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

.form-note {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

/* CONDITIONS */

.conditions-list {
    list-style: none;
    padding-left: 0;
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: left;
}

.conditions-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.conditions-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: #111;
    font-size: 22px;
}

/* FOOTER */

.footer {
    padding: 22px 10% 26px;
    background: #111;
    color: #fff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: 14px;
}

.footer-inner a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-inner a:hover {
    opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    section {
        padding: 60px 7%;
    }

    .form {
        padding: 24px 18px 26px;
    }

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

    .hero.small {
        height: 50vh;
    }
}
