/* ============================================
   Tiki Torch CNX — Coming Soon Landing Page
   ============================================ */

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
    background-color: #2c241b;
}

/* ---------- Scene ---------- */
.scene {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        url('https://assets.tikitorchcnx.com/images/Texture-Leather.webp'),
        radial-gradient(ellipse at 30% 40%, #3a2e22 0%, #2c241b 60%, #1a120b 100%);
    background-blend-mode: overlay;
    background-size: cover;
}

/* ---------- Leather cover ---------- */
.cover {
    position: relative;
    width: 100%;
    max-width: 480px;
    background:
        radial-gradient(ellipse at 30% 20%, #795548 0%, #5D4037 40%, #4E342E 100%);
    border-radius: 6px;
    padding: 4px;
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.7),
        0 8px 20px -5px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cover-texture {
    position: absolute;
    inset: 0;
    border-radius: 6px;
    background:
        url('https://assets.tikitorchcnx.com/images/Texture-Leather.webp');
    background-size: cover;
    opacity: 0.6;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.cover-border {
    border: 1.5px dashed #8d6e63;
    border-radius: 4px;
    padding: 3px;
    position: relative;
}

/* ---------- Page ---------- */
.page {
    position: relative;
    background: linear-gradient(170deg, #fdfbf7 0%, #f9f5eb 40%, #efe6d5 100%);
    border-radius: 3px;
    overflow: hidden;
}

.page-texture {
    position: absolute;
    inset: 0;
    background: url('https://assets.tikitorchcnx.com/images/Texture-Paper.webp');
    background-size: cover;
    opacity: 0.8;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.page-dust {
    position: absolute;
    inset: 0;
    background: url('/assets/textures/dust.png');
    background-size: 300px;
    opacity: 0.25;
    mix-blend-mode: color-burn;
    pointer-events: none;
}

/* ---------- Content ---------- */
.page-content {
    position: relative;
    z-index: 1;
    padding: 48px 36px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #2b1d16;
}

/* Logo */
.logo-wrap {
    width: 100%;
    max-width: 280px;
    margin-bottom: 24px;
}

.logo {
    width: 100%;
    height: auto;
    filter: invert(12%) sepia(21%) saturate(798%) hue-rotate(337deg) brightness(92%) contrast(90%) opacity(0.9);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 60%;
    margin: 16px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(43, 29, 22, 0.3),
        transparent
    );
}

.divider-ornament {
    font-family: 'Playfair Display', serif;
    font-size: 10px;
    color: rgba(43, 29, 22, 0.35);
    line-height: 1;
}

/* Typography */
.headline {
    font-family: 'IM Fell English SC', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #2b1d16;
    margin-bottom: 20px;
}

.body-text {
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5a5a5a;
    max-width: 360px;
    margin-bottom: 8px;
}

.body-text:last-of-type {
    margin-bottom: 24px;
}

/* Quote */
.quote {
    font-family: 'La Belle Aurore', cursive;
    font-size: 18px;
    line-height: 1.5;
    color: #3e3221;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
    padding: 0 8px;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: rgba(43, 29, 22, 0.2);
    vertical-align: -2px;
}

.attribution {
    font-family: 'Special Elite', cursive;
    font-size: 12px;
    color: rgba(43, 29, 22, 0.5);
    margin-top: 6px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

/* Location */
.location {
    font-family: 'Crimson Text', serif;
    font-size: 14px;
    color: #5a5a5a;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.location-label {
    font-family: 'Special Elite', cursive;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(43, 29, 22, 0.4);
}

/* Social links */
.social-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #5D4037;
    background: rgba(93, 64, 55, 0.06);
    border: 1px solid rgba(93, 64, 55, 0.12);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #b05e27;
    background: rgba(176, 94, 39, 0.08);
    border-color: rgba(176, 94, 39, 0.2);
}

/* Footer */
.footer-note {
    font-family: 'Special Elite', cursive;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(43, 29, 22, 0.25);
}

/* ========== Responsive ========== */
@media (max-width: 540px) {
    .scene {
        padding: 16px;
        align-items: flex-start;
        padding-top: 10vh;
    }

    .page-content {
        padding: 36px 24px 28px;
    }

    .logo-wrap {
        max-width: 220px;
    }

    .headline {
        font-size: 19px;
    }

    .body-text {
        font-size: 15px;
    }

    .quote {
        font-size: 16px;
    }
}

@media (max-height: 680px) {
    .scene {
        align-items: flex-start;
        padding-top: 3vh;
        overflow-y: auto;
    }
}
