
/* ── FONTS ── */
@font-face {
    font-family: 'LemonMilk';
    src: url('../assets/fonts/LEMONMILK-Medium.woff') format('woff2'),
         url('../assets/fonts/LEMONMILK-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    
@font-face {
    font-family: 'Lemon Milk';
    src: url('assets/fonts/LEMONMILK-MediumItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

}

/* ── RESET & BASE ── */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
	font-family: 'Inter', sans-serif;
	background-color: #040303;
	color: #EFEBCE;
	overflow-x: hidden;
}

/* ── NAVIGATION ── */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	background: rgba(4, 3, 3, 0.85);
	backdrop-filter: blur(8px);
	border-bottom: 0.5px solid rgba(190, 124, 77, 0.2);
}

.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo-img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.logo-text {
    font-family: 'LemonMilk', sans-serif;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #EFEBCE;
}

.nav-location {
	font-size: 11px;
	color: #E3E7D3;
	opacity: 0.5;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

/* ── HERO ── */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	padding-bottom: 60px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

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

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(4,3,3,0.8) 0%, rgba(4,3,3,0.3) 60%, rgba(4,3,3,0.55) 100%);
	z-index: 1;
}

.hero-overlay-bottom {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(4,3,3,0.85) 0%, transparent 50%);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	padding-top: 120px;
}

.hero-left { flex: 1; }

.badge {
    font-family: 'LemonMilk', sans-serif;
    font-size: 9px;
    color: #BE7C4D;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.headline {
    font-family: 'LemonMilk', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: normal;
    font-style: normal;
    color: #EFEBCE;
    line-height: 1.3;
    margin-bottom: 16px;
}

.subheadline {
	font-size: 15px;
	color: #E3E7D3;
	opacity: 0.7;
	line-height: 1.8;
	font-weight: 300;
	max-width: 400px;
}

/* ── FORM BOX ── */
.hero-right { width: 320px; flex-shrink: 0; }

.form-box {
	background: rgba(239, 235, 206, 0.12);
	border: 0.5px solid rgba(190, 124, 77, 0.45);
	border-radius: 10px;
	padding: 24px;
}

.form-label {
    font-family: 'LemonMilk', sans-serif;
    text-align: center;
	font-size: 16px;
	color: #EFEBCE;
	opacity: 0.9;
	margin-bottom: 14px;
	letter-spacing: 0.3px;
}

/* ── SCROLL HINT ── */
.scroll-hint {
	text-align: center;
	padding: 12px;
	background: rgba(4, 3, 3, 0.7);
	font-size: 10px;
	color: #BE7C4D;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* ── FEATURES ── */
/* ── FEATURES ── */
.features {
    background: #3a4a37;
    padding: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    border-top: 0.5px solid rgba(190, 124, 77, 0.2);
    border-bottom: 0.5px solid rgba(190, 124, 77, 0.2);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    stroke: #BE7C4D;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-label {
    font-family: 'LemonMilk', sans-serif;
    font-size: 12px;
    color: #EFEBCE;
    opacity: 0.7;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    max-width: 120px;
    line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
	background: #040303;
	padding: 20px 32px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 0.5px solid rgba(190, 124, 77, 0.15);
}

.footer-copy {
	font-size: 11px;
	color: #EFEBCE;
	opacity: 0.35;
}

.footer-link {
	font-size: 11px;
	color: #BE7C4D;
	text-decoration: underline;
}
/* ── MAILCHIMP FORM ── */
.mc-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mc-email-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.12
);
    border: 0.5px solid rgba(239, 235, 206, 0.25);
    border-radius: 5px;
    padding: 12px 14px;
    font-size: 13px;
    color: #EFEBCE;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s ease;
}

.mc-email-input::placeholder {
    color: rgba(239, 235, 206, 0.35);
}

.mc-email-input:focus {
    border-color: rgba(190, 124, 77, 0.7);
}

.mc-submit-btn {
    width: 100%;
    background: #BE7C4D;
    color: #EFEBCE;
    border: none;
    border-radius: 5px;
    padding: 12px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mc-submit-btn:hover {
    background: #a86a3d;
}

.mc-legal {
    font-size: 10px;
    color: #EFEBCE;
    opacity: 0.4;
    text-align: center;
    line-height: 1.6;
}

.mc-legal a {
    color: #BE7C4D;
    text-decoration: underline;
}
/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

    /* Navigation */
    .nav-inner {
        padding: 12px 20px;
    }

    .logo-text {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .nav-location {
        font-size: 9px;
    }

    /* Hero — stack vertically */
    .hero {
        align-items: flex-start;
        padding-bottom: 40px;
        min-height: 100vh;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 100px 20px 40px;
        gap: 28px;
        min-height: 100vh;
    }

    /* Hero left — text */
    .hero-left {
        width: 100%;
    }

    .badge {
        font-size: 8px;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .headline {
        font-size: clamp(28px, 8vw, 40px);
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .subheadline {
        font-size: 13px;
        line-height: 1.7;
        max-width: 100%;
        opacity: 0.75;
    }

    /* Hero right — form drops below */
    .hero-right {
        width: 100%;
    }

    .form-box {
        padding: 20px;
        background: rgba(239, 235, 206, 0.10);
    }

    .form-label {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .mc-email-input {
        font-size: 14px;
        padding: 13px 14px;
    }

    .mc-submit-btn {
        font-size: 13px;
        padding: 13px;
    }

    /* Scroll hint */
    .scroll-hint {
        font-size: 8px;
        padding: 10px;
    }

    /* Feature strip — wrap into grid */
    .features {
        padding: 28px 20px;
        gap: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
    }

    .feature-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 20px;
    }

    .footer-copy {
        font-size: 10px;
    }
}

/* ── EXTRA SMALL SCREENS ── */
@media (max-width: 380px) {

    .headline {
        font-size: 26px;
    }

    .logo-text {
        display: none;
    }

    .features {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
.features-coming-soon {
    text-align: center;
    width: 100%;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a97e;
    margin-bottom: 1.2rem;
}