/* base.css */
*{
    margin:0;padding:0;box-sizing:border-box;
}
:root{
    --accent:#A95660;
    --accent-dark:#8b424c;
    --bg-soft:#f4f4f9;
    --header-bg:#FCDFDB;
    --text-main:#333;
    --border-soft:#e5cfd3;
    --radius-lg:16px;
    --shadow-soft:0 10px 25px rgba(0,0,0,.06);
}
body{
    font-family:Arial,sans-serif;
    background:var(--bg-soft);
    color:var(--text-main);
}
a{
    text-decoration:none;
    font-weight: bold;
    color:var(--text-main);
}