:root {
    --bg: #f5f1eb;
    --bg-strong: #ebe4da;
    --panel: rgba(255, 252, 247, 0.8);
    --panel-border: rgba(112, 88, 56, 0.12);
    --text: #34261a;
    --muted: #6d5a49;
    --accent: #e7b16c;
    --accent-deep: #cf9452;
    --shadow: 0 30px 80px rgba(77, 54, 29, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 34%),
        linear-gradient(145deg, #f7f3ee 0%, #efe7dc 52%, #e7ddd0 100%);
}

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

.page-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 32px;
}

.ambient {
    position: absolute;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.45;
    pointer-events: none;
}

.ambient-left {
    top: 90px;
    left: -80px;
    width: 240px;
    height: 240px;
    background: rgba(231, 177, 108, 0.38);
}

.ambient-right {
    right: -60px;
    bottom: 120px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.5);
}

.topbar,
.hero {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 42px;
}

.badge,
.status {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.72);
    backdrop-filter: blur(10px);
    color: var(--muted);
    font-size: 0.95rem;
}

.badge {
    font-weight: 800;
    color: var(--text);
}

.hero {
    display: grid;
    gap: 28px;
}

.brand-card {
    display: grid;
    grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    padding: 38px;
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-xl);
    background: var(--panel);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.logo-frame {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 233, 221, 0.86));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 20px 55px rgba(98, 71, 39, 0.15);
}

.logo-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(112, 88, 56, 0.09);
    border-radius: 22px;
    pointer-events: none;
}

.logo-frame img {
    width: 100%;
    border-radius: 20px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-deep);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.lead {
    margin: 22px 0 0;
    max-width: 42rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.info-card {
    padding: 26px 24px;
    border: 1px solid var(--panel-border);
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 247, 0.68);
    box-shadow: 0 16px 40px rgba(77, 54, 29, 0.08);
}

.info-card h2 {
    margin: 0 0 12px;
    font-size: 1.1rem;
    line-height: 1.2;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .page-shell {
        padding: 20px;
    }

    .brand-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.4rem, 11vw, 4rem);
    }

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

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