:root{
  --max: 1080px;
  --bg: #f6efe6;         /* warm cream */
  --paper: #fff7ee;      /* lighter cream */
  --ink: #1b1411;        /* deep brown/black */
  --muted: #4a3a33;
  --border: rgba(27,20,17,.14);
  --shadow: 0 14px 40px rgba(27,20,17,.10);
  --red: #c1121f;        /* bold red */
  --gold: #f2b233;       /* menu-gold accent */
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 340px at 10% -10%, rgba(193,18,31,.18), transparent 60%),
    radial-gradient(700px 280px at 95% 0%, rgba(242,178,51,.18), transparent 55%),
    var(--bg);
  line-height:1.55;
}

a{ color:inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 18px; }

/* HEADER */
header{
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(246,239,230,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
nav{
  display:flex; align-items:center; justify-content:space-between;
  gap: 14px; flex-wrap: wrap;
}
nav strong{
  font-size: 1.08rem;
  letter-spacing: .2px;
}
nav .links{
  display:flex; gap: 14px; flex-wrap: wrap; align-items:center;
}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 16px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 0 6px 0 rgba(27,20,17,.14);
  text-decoration:none !important;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 0 rgba(27,20,17,.14); }
.btn:active{ transform: translateY(1px); box-shadow: 0 4px 0 rgba(27,20,17,.14); }
.btn:focus{ outline: 3px solid rgba(193,18,31,.35); outline-offset: 3px; }

.btn.primary{
  background: linear-gradient(180deg, #d11b2a, #a90d18);
  color: #fff;
  border-color: #5c0a10;
  box-shadow: 0 6px 0 rgba(92,10,16,.25);
}
.btn.primary:hover{ box-shadow: 0 8px 0 rgba(92,10,16,.25); }
.btn.primary:active{ box-shadow: 0 4px 0 rgba(92,10,16,.25); }

.kicker{
  display:inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  background: rgba(255,247,238,.9);
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: .85rem;
}

/* HERO */
.hero{ padding: 54px 0 18px; }
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.6px;
  text-transform: none;
}
.hero p{ max-width: 62ch; font-size: 1.05rem; color: var(--muted); }
.hero .actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

hr{ border:0; border-top:1px solid var(--border); margin: 26px 0; }

/* CARDS + GRID */
.grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.card{
  background: rgba(255,247,238,.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.card h2{
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: .1px;
}
.card small{ color: var(--muted); }

/* NOTICE */
.notice{
  background: rgba(242,178,51,.15);
  border: 1px solid rgba(242,178,51,.35);
  padding: 14px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(27,20,17,.06);
}

/* FORMS */
label{ display:block; margin-top: 12px; font-weight: 900; }
input, textarea, select{
  width:100%;
  padding: 12px;
  border-radius: 14px;
  border: 2px solid rgba(27,20,17,.35);
  background: rgba(255,247,238,.92);
  font: inherit;
}
textarea{ min-height: 140px; }

/* FOOTER */
footer{
  margin-top: 36px;
  border-top: 1px solid var(--border);
  background: rgba(246,239,230,.65);
}
footer p a{ font-weight: 800; }
small{ color: var(--muted); }

/* COOKIE BANNER */
.cookie-banner{
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: var(--max); margin: 0 auto;
  background: rgba(255,247,238,.95);
  border: 2px solid rgba(27,20,17,.25);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(27,20,17,.18);
  display:none;
}
.cookie-actions{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }

