:root{
    --bg:#f8f1eb;
    --surface:#fffaf6;
    --surface-soft:#f1e6de;
    --text:#171717;
    --text-soft:#65605d;
    --accent:#dc6848;
    --accent-hover:#c95537;
    --border:rgba(23,23,23,.14);
    --shadow:0 20px 50px rgba(90,55,40,.12);
    --radius:28px;
    --transition:.3s ease;
}

[data-theme="dark"]{
    --bg:#171514;
    --surface:#211e1c;
    --surface-soft:#2b2623;
    --text:#f8f3ef;
    --text-soft:#b9b0aa;
    --accent:#ee7957;
    --accent-hover:#ff8967;
    --border:rgba(255,255,255,.13);
    --shadow:0 20px 50px rgba(0,0,0,.35);
}

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

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    overflow-x:hidden;
    background:var(--bg);
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif;
    transition:background var(--transition),color var(--transition);
}

a{
    color:inherit;
    text-decoration:none;
}

button{
    font:inherit;
}

main{
    min-height:100vh;
}