:root {
    --navy: #071A2F;
    --white: #FFFFFF;
    --dark-green: #123D2C;
    --gold: #C9A45C;
    --bg: #F7F5F2;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--navy);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
    background-color: var(--gold);
    color: var(--navy);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.5rem 1rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem 2rem;
    background:
        radial-gradient(ellipse at center 35%, rgba(201, 164, 92, 0.10), transparent 60%),
        var(--navy);
    text-align: center;
    overflow: hidden;
}

.hero__image-wrap {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeInUp 1.1s ease-out 0.15s forwards;
}

.hero__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 26, 47, 0) 0%, rgba(7, 26, 47, var(--overlay-opacity, 0.2)) 78%, rgba(7, 26, 47, 0.92) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeInUp 1.1s ease-out 0.4s forwards;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.hero__headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero__subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeInUp 1.1s ease-out 0.65s forwards;
}

.btn-gold {
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.8rem 2.1rem;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline-gold {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.8rem 2.1rem;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.btn-outline-gold:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.scroll-indicator {
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2.2s ease-in-out infinite, fadeIn 1.5s ease-out 1.2s forwards;
    opacity: 0;
    font-size: 1.4rem;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero__image-wrap, .hero__content, .hero__actions, .scroll-indicator {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ---------- Countdown ---------- */
.countdown-section {
    background-color: var(--dark-green);
    padding: 4rem 1.5rem;
    text-align: center;
}

.countdown-section__label {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown__unit {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 164, 92, 0.35);
    border-radius: 6px;
    min-width: 88px;
    padding: 1.25rem 0.5rem;
}

.countdown__value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.countdown__unit-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* ---------- Newsletter ---------- */
.newsletter-section {
    background-color: var(--bg);
    color: var(--navy);
    padding: 4.5rem 1.5rem;
    text-align: center;
}

.newsletter-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.75rem;
}

.newsletter-section p {
    color: #4a4a4a;
    max-width: 480px;
    margin: 0 auto 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1 1 260px;
    padding: 0.85rem 1.1rem;
    border: 1px solid #d8d3c8;
    border-radius: 2px;
    font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.25);
}

/* Honeypot: invisible to humans, visible to bots that ignore CSS */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: var(--navy);
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__business {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.site-footer__columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
}

.site-footer__col {
    min-width: 200px;
}

.site-footer__col-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.site-footer__line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.site-footer__line i {
    color: var(--gold);
    margin-right: 0.4rem;
    width: 1rem;
    display: inline-block;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.site-footer__copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}
