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

html, body {
    font-family: 'Lora', serif;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* ── HEADER ── */
header {
    flex: 0 0 60px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    padding: 0 40px;
}

.header-logos img {
    height: 40px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-nav a {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a2e44;
    text-decoration: none;
    letter-spacing: 0.01em;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.15s;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: #1a2e44;
    width: 0;
    transition: width 0.5s ease;
}

.header-nav a:hover,
.header-nav a.is-hovered {
    background-color: #f2f2f2;
}

.header-nav a:hover::after,
.header-nav a.is-hovered::after {
    width: calc(100% - 20px);
}

.header-dropdown {
    position: relative;
}

.header-dropdown button {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a2e44;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.01em;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.15s;
    position: relative;
}

.header-dropdown button::before {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 10px;
    height: 2px;
    background-color: #1a2e44;
    width: 0;
    transition: width 0.5s ease;
}

.header-dropdown button::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-bottom: 3px;
    transition: transform 0.2s;
}

.header-dropdown:hover button,
.header-dropdown button.is-hovered {
    background-color: #f2f2f2;
}

.header-dropdown button:hover::before,
.header-dropdown button.is-hovered::before {
    width: calc(100% - 20px);
}

.header-dropdown:hover button::after,
.header-dropdown.is-open button::after {
    transform: rotate(225deg);
    margin-bottom: -3px;
}

.header-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    min-width: 480px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
}

.header-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.header-dropdown:hover .header-dropdown-menu {
    display: grid;
}

.header-dropdown-menu a {
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a2e44;
    text-decoration: none;
    letter-spacing: 0.01em;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.15s;
    position: relative;
}

.header-dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 10px;
    height: 2px;
    background-color: #1a2e44;
    width: 0;
    transition: width 0.5s ease;
}

.header-dropdown-menu a:hover,
.header-dropdown-menu a.is-hovered {
    background-color: #f2f2f2;
}

.header-dropdown-menu a:hover::after,
.header-dropdown-menu a.is-hovered::after {
    width: calc(100% - 20px);
}

/* ── HERO ── */
.hero-section {
    width: 100%;
    flex: 0 0 58vh;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 6% 5%;
    color: #fff;
    width: 55%;
    background: linear-gradient(to right, rgba(0,0,0,0.35) 0%, transparent 100%);
}

.hero-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-brand-name {
    font-size: clamp(14px, 1.4vw, 22px);
    font-weight: bold;
    letter-spacing: 0.02em;
}

.hero-brand-sub {
    font-size: clamp(9px, 0.75vw, 13px);
    letter-spacing: 0.25em;
    font-family: sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-coming-soon {
    font-family: 'Lora', serif;
    font-size: calc(var(--heading-size) / 2.4);
    white-space: nowrap;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.04em;
}

.hero-content {
    --heading-size: clamp(22px, 3.2vw, 58px);
}

.hero-heading {
    font-size: var(--heading-size);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* ── FOOTER ── */
footer {
    flex: 1;
    background-color: #f8f9fb;
    padding: 16px 60px;
    font-family: sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.footer-logos {
    flex-shrink: 0;
}

.footer-logos img {
    height: 28px;
    width: auto;
}

.footer-info {
    font-size: 11px;
    line-height: 1.5;
    color: #444;
}

.footer-disclaimer {
    font-size: 10px;
    line-height: 1.5;
    color: #555;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    flex-shrink: 0;
}

.footer-disclaimer p {
    margin-bottom: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    header {
        flex: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
        gap: 6px;
        position: sticky;
        top: 0;
        z-index: 300;
    }

    .header-logos img {
        height: 36px;
    }

    .header-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }

    .header-nav a,
    .header-dropdown button {
        font-size: 13px;
    }

    .header-dropdown:hover .header-dropdown-menu {
        display: none;
    }

    .header-dropdown.is-open .header-dropdown-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        min-width: 220px;
        gap: 0;
    }

    .hero-section {
        flex: none;
        height: 56vw;
        min-height: 220px;
    }

    .hero-content {
        width: 100%;
        padding: 5% 6%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 100%);
    }

    footer {
        flex: none;
        padding: 20px;
        gap: 12px;
        overflow: visible;
        justify-content: flex-start;
    }

    .footer-logos img {
        height: 22px;
    }

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

    .footer-disclaimer {
        font-size: 9px;
    }
}
