
:root {
  --bg: #0B0B0C; --card: #151517; --primary: #D9C79E; --accent: #8A7B5C;
  --text: #F1EEE6; --muted: #B9B2A2; --radius: 0px; --shadow: none;
  --font-h: 'Cormorant Garamond', serif; --font-b: 'Montserrat', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--bg); line-height: 1.6; }
h1, h2, h3 { font-family: var(--font-h); line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin-inline: auto; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; border: none; }
.btn-primary { background: var(--primary); color: #0B0B0C; }
.btn-accent { background: var(--accent); color: #111; }
.wa-fab { position: fixed; right: 20px; bottom: 20px; background: #25D366; color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.25); z-index: 40; font-size: 1.5rem; }
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; background: #D9C79E; color: #0B0B0C;
  padding: .9rem 1.2rem; display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; z-index: 50; font-size: .85rem; }
.cookie-banner button { background: #8A7B5C; color: #111; border: none; padding: .5rem 1rem; border-radius: 6px; font-weight: 700; cursor: pointer; }
footer { padding: 3rem 0 6rem; font-size: .9rem; color: var(--muted); }
footer .foot-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
footer nav a { display: block; margin-bottom: .4rem; color: var(--muted); }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .6rem; }
.section-sub { color: var(--muted); max-width: 640px; }

header { position: absolute; top:0; left:0; right:0; z-index: 30; }
header .bar { display:flex; align-items:center; justify-content: center; flex-direction: column; padding: 2rem 0 1rem; gap: .6rem; }
.logo { font-family: var(--font-h); font-size: 1.6rem; letter-spacing: .06em; color: var(--primary); }
nav.main { display:flex; gap: 1.8rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
.hero { min-height: 78vh; display:flex; align-items:center; justify-content:center; text-align:center;
  background: radial-gradient(circle at 50% 0%, #1c1a17 0%, var(--bg) 70%); padding: 6rem 0 3rem; }
.hero .tag { color: var(--accent); letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 1rem 0; font-weight: 500; }
.hero-sub { color: var(--muted); max-width: 560px; margin: 0 auto 2rem; }
section { padding: 5rem 0; border-top: 1px solid #2a2a2c; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 0; }
.card { padding: 2rem 1.6rem; border-left: 1px solid #2a2a2c; }
.card:first-child { border-left: none; }
.card h3 { font-family: var(--font-h); font-size: 1.3rem; color: var(--accent); margin-bottom: .6rem; font-weight: 500; }
.diff-list { list-style: none; display: grid; gap: 1rem; margin-top: 1.5rem; }
.diff-list li { border-bottom: 1px solid #2a2a2c; padding-bottom: 1rem; }
