:root {
    --bg: #fff8f4;
    --bg-soft: #fff1e7;
    --ink: #2d1a12;
    --muted: #7e5a4b;
    --panel: #ffffff;
    --panel-edge: #ffe1d1;
    --accent: #ff7a18;
    --accent-2: #ff9e58;
    --warm: #c24f00;
}

* { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "DM Sans", "Plus Jakarta Sans", sans-serif;
    min-height: 100vh;
    background: radial-gradient(circle at 8% 10%, #ffd7bc 0%, transparent 38%),
        radial-gradient(circle at 90% 14%, #ffe8d8 0%, transparent 34%),
        linear-gradient(145deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.ambient {
    position: fixed;
    border-radius: 999px;
    filter: blur(65px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: drift 14s ease-in-out infinite;
}

.ambient-a { width: 260px; height: 260px; background: #ffbe92; top: 7%; left: -70px; }
.ambient-b { width: 320px; height: 320px; background: #ffd5b6; right: -110px; top: 38%; animation-delay: 2s; }
.ambient-c { width: 260px; height: 260px; background: #ff9e58; bottom: -100px; left: 34%; animation-delay: 4s; }

.shell { width: min(1140px, 92vw); margin: 0 auto; }

.site-header {
    margin-top: 1.1rem;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--panel-edge);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.brand img { width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--panel-edge); }

nav { display: flex; gap: 0.45rem; }
nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.93rem;
    border-radius: 999px;
    padding: 0.6rem 0.85rem;
    transition: 0.24s ease;
}
nav a:hover { background: #fff1e7; transform: translateY(-1px); }

main { padding: 1.3rem 0 1rem; }

.panel, .card {
    background: var(--panel);
    border: 1px solid var(--panel-edge);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(255, 122, 24, 0.12);
}

.hero { padding: clamp(1.2rem, 3.4vw, 2.4rem); display: grid; gap: 1.2rem; grid-template-columns: 1.15fr 0.85fr; }

.eyebrow { margin: 0; text-transform: uppercase; letter-spacing: 0.09em; color: var(--accent); font-size: 0.78rem; font-weight: 700; }

h1, h2 { font-family: "DM Sans", sans-serif; color: var(--ink); }
h1 { margin: 0.5rem 0 0.85rem; line-height: 1.07; font-size: clamp(1.9rem, 4.4vw, 3.4rem); }
h2 { margin: 0 0 0.5rem; }

.lead, p { color: var(--muted); line-height: 1.7; }

.cta-row { margin-top: 1.2rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.75rem 1.05rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #fff;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 22px rgba(255, 122, 24, 0.34);
}
.btn-ghost { color: var(--ink); border: 1px solid var(--panel-edge); background: #fff; }

.hero-metrics { display: grid; gap: 0.8rem; }
.metric { padding: 1rem; border-radius: 16px; background: #fffaf7; border: 1px solid var(--panel-edge); }
.metric span { font-family: "DM Sans", sans-serif; color: var(--warm); font-size: 1.7rem; font-weight: 700; }
.metric p { margin: 0.3rem 0 0; font-size: 0.93rem; }

.service-grid, .persona-grid, .support-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.service-grid article, .persona, .support-block { padding: 1.1rem; }

.hover-lift { transition: transform 0.22s ease, border-color 0.22s ease; }
.hover-lift:hover { transform: translateY(-4px); border-color: #ffc29b; }

.ticker-wrap {
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid var(--panel-edge);
    border-radius: 999px;
    background: #fffaf7;
}
.ticker { white-space: nowrap; display: inline-block; padding: 0.7rem 0; animation: ticker 26s linear infinite; }
.ticker span { color: #8d5a45; font-weight: 600; margin: 0 1.6rem; }

.legal, .support, .journey { padding: clamp(1rem, 2.4vw, 1.8rem); }
.support-email { color: var(--accent); font-weight: 700; text-decoration: none; }

.site-footer { padding: 1rem 0 2rem; }
.site-footer p { color: #8f6653; font-size: 0.95rem; }

.reveal { opacity: 0; transform: translateY(14px); animation: reveal 0.7s ease forwards; }
.reveal-1 { animation-delay: 0.12s; }
.reveal-2 { animation-delay: 0.26s; }
.reveal-3 { animation-delay: 0.38s; }

.persona { position: relative; overflow: hidden; }
.persona::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.16), transparent 70%);
    right: -40px;
    top: -35px;
}
.persona ul, .support-list { margin: 0.75rem 0 0; padding-left: 1rem; color: #8d5a45; }
.persona li, .support-list li { margin-bottom: 0.4rem; }

.journey-grid {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.journey-grid div { border-radius: 14px; border: 1px solid var(--panel-edge); background: #fffaf7; padding: 0.8rem; }
.journey-grid span { font-family: "DM Sans", sans-serif; color: var(--warm); font-size: 1.1rem; font-weight: 700; }
.journey-grid p { margin: 0.35rem 0 0; }

.support-hero { margin-bottom: 1rem; }

.support-messages { margin: 1rem 0; }
.alert { border-radius: 12px; padding: 0.75rem 0.9rem; border: 1px solid; margin-bottom: 0.6rem; font-weight: 600; }
.alert-success { border-color: #ffbe92; background: #fff1e7; color: #7d3d18; }
.alert-error { border-color: #fda4a4; background: #fff1f1; color: #8a3030; }

.support-form { margin-top: 0.6rem; }
.form-grid { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.support-form label { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 600; color: #7e5a4b; margin-bottom: 0.75rem; }
.support-form input, .support-form select, .support-form textarea {
    border: 1px solid var(--panel-edge);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    padding: 0.7rem 0.8rem;
    font: inherit;
}
.support-form textarea { resize: vertical; }
.support-form input:focus, .support-form select:focus, .support-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.2);
}
.form-error { color: #a63c3c; font-weight: 600; }

@keyframes drift {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(22px) translateX(10px); }
}
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 840px) { .hero { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
    .site-header { flex-direction: column; align-items: flex-start; }
    nav { width: 100%; overflow-x: auto; padding-bottom: 0.2rem; }
    nav a { white-space: nowrap; }
}
.about-hero {
    padding: clamp(1.2rem, 3.4vw, 2.2rem);
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.about-hero img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--panel-edge);
    object-fit: cover;
    max-height: 420px;
}

.about-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-card {
    padding: 1.1rem;
}

.about-gallery {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, 1fr);
}

.about-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid var(--panel-edge);
    box-shadow: 0 12px 24px rgba(255, 122, 24, 0.12);
}

.about-note {
    margin-top: 1rem;
    padding: 1.2rem;
}

@media (max-width: 900px) {
    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }

    .about-gallery img {
        height: 220px;
    }
}
.brand-slogan {
    margin: 0 0 0.45rem;
    font-family: "DM Sans", sans-serif;
    font-weight: 800;
    color: var(--warm);
    letter-spacing: 0.01em;
    font-size: clamp(1rem, 2vw, 1.25rem);
}
