@font-face {
    font-family: 'Domine';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/domine-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Domine';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/domine-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Domine';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/domine-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/karla-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/karla-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/karla-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/karla-700.woff2') format('woff2');
}

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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #f8f2e6 0%, #f2ead9 100%);
    padding: 2rem;
    font-family: 'Karla', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #3a2c20;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
}

.image-wrapper {
    max-width: 100%;
    display: flex;
    justify-content: center;
}

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

.accent-text {
    text-align: center;
    color: #3a2c20;
    font-family: 'Domine', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: .18em;
    line-height: 1.6;
    max-width: 800px;
    padding: 0 1rem;
    text-transform: uppercase;
}

.brandmark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: #3a2c20;
}

.brandmark svg {
    flex-shrink: 0;
}

.video-frame {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #d97a4c 0%, #b9552c 100%);
    box-shadow: 0 24px 48px -22px rgba(58, 44, 32, .45);
}

.video-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #c1592f;
    color: #fff6ee;
    font-family: 'Karla', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    padding: .85rem 1.75rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 24px -12px rgba(193, 89, 47, .6);
    transition: background-color .15s ease;
}

.download-button:hover {
    background: #a94b25;
}

.download-button svg {
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .container {
        gap: 1.5rem;
    }

    .accent-text {
        font-size: 1rem;
    }

    .download-button {
        padding: .7rem 1.4rem;
    }
}
