@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/Mulish-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/Mulish-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Mulish';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/Mulish-700.woff2') format('woff2');
}
:root {
    --rose: #fde2e4;
    --peach: #f9dcc4;
    --sage: #d8e2dc;
    --sky: #cde6f5;
    --midnight: #1b2b44;
    --accent: #e26d5a;
    --warning: #f97316;
}
* { box-sizing: border-box; }
body {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    background: #fffdfb;
    color: #1f2933;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.btn-primary {
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(226,109,90,.25); }
.btn-ghost {
    border: 1px solid var(--midnight);
    color: var(--midnight);
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.badge {
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--midnight);
    background: rgba(255,255,255,.7);
    border-radius: 999px;
    padding: .35rem .9rem;
}
.card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 25px 40px rgba(15,23,42,.08);
}
.section { padding: 3rem 1rem; }
.max-container { max-width: 75rem; margin: 0 auto; padding: 0 1rem; }
.hero { background: linear-gradient(135deg, var(--peach), var(--rose)); padding: 4rem 1rem; }
header[data-partial="header"] {
    min-height: 90px;
    display: block;
}
footer[data-partial="footer"] {
    min-height: 260px;
    display: block;
}
.hero-figure {
    aspect-ratio: 4 / 3;
    width: 100%;
}
.hero-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.warning-box {
    background: #fff4ec;
    border-left: 6px solid var(--warning);
    border-radius: 1rem;
    padding: 1.5rem;
}
.warning-box strong { color: var(--warning); }
.footer-host {
    background: #0f172a;
    color: #f8fafc;
}
.footer-host a {
    color: #fefefe;
}
.footer-host a:hover {
    text-decoration: underline;
}
.footer-inner {
    color: #f8fafc;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}
.info-table th,
.info-table td {
    border: 1px solid #e2e8f0;
    padding: 0.9rem;
    text-align: left;
}
.info-table thead {
    background: var(--sage);
    color: var(--midnight);
    font-weight: 700;
}
.info-table tbody tr:nth-child(odd) {
    background: #f8fafc;
}
.hidden { display: none; }
@media (min-width: 768px) {
    .section { padding: 4rem 1rem; }
}
