/* styles.css — HERBWYN CBD coming soon */
:root{
  --bg:#0b0f0c;
  --fg:#e7f5e9;
  --muted:#b7c7bb;
  --accent:#c2a75e; /* doré */
  --accent-2:#2c6e49; /* vert profond */
  --card:rgba(255,255,255,0.04);
  --border:rgba(255,255,255,0.08);
  --focus: #88cc99;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--fg);
  background: radial-gradient(1200px 800px at 10% 10%, #0f2016, transparent),
              radial-gradient(1000px 700px at 90% 10%, #211b09, transparent),
              linear-gradient(180deg, #0a0d0b, #0b0f0c);
}

.page{
  min-height:100%;
  display:flex;
  flex-direction:column;
  padding: clamp(16px, 2vw, 32px);
}

.header{
  display:flex;
  align-items:center;
  gap:16px;
  margin: 8px 0 24px;
}

.logo{ width:42px; height:42px }

.brand{ margin:0; line-height:1.1 }
.brand-top{ display:block; font-size:14px; color:var(--muted); letter-spacing:.08em; text-transform:uppercase }
.brand-main{ font-size: clamp(30px, 4vw, 48px); font-weight:800 }
.accent{ color:var(--accent) }

.hero{
  margin:auto;
  width:min(720px, 100%);
  padding: clamp(20px, 2vw, 28px);
  background: var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow: var(--shadow);
  text-align:center;
}

.hero h2{
  margin:0 0 8px;
  font-size: clamp(26px, 3.5vw, 40px);
}

.lead{
  margin:0 0 22px;
  color:var(--muted);
  font-size: clamp(16px, 2.2vw, 18px);
}

.countdown{
  display:flex;
  justify-content:center;
  gap:12px;
  margin: 0 0 18px;
  font-weight:600;
}
.countdown .pill{
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:10px;
  min-width:80px;
}

.notify{
  display:flex;
  gap:10px;
  justify-content:center;
  margin:0 0 12px;
  flex-wrap:wrap;
}

.notify input[type="email"]{
  flex:1 1 280px;
  max-width: 360px;
  padding:14px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(0,0,0,0.15);
  color: var(--fg);
  outline: none;
}

.notify input[type="email"]:focus{
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(136,204,153,.25);
}

.notify button{
  padding:14px 18px;
  border-radius:10px;
  border:1px solid var(--accent);
  background: linear-gradient(180deg, var(--accent), #a08841);
  color:#14120b;
  font-weight:700;
  cursor:pointer;
}

.notify button:hover{ filter:brightness(1.03) }
.notify button:active{ transform: translateY(1px) }

.form-note{ margin:6px 0 10px; font-size:12px; color:var(--muted) }

.contacts{ margin:14px 0 0; color:var(--muted) }
.contacts .link{ color:var(--fg); text-underline-offset:3px }
.sep{ opacity:.6; margin:0 8px }

.footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.footer a{ color:var(--fg) }

/* Cookie banner */
dialog#cookie-banner{
  border:none;
  border-radius:14px;
  padding:0;
  background: var(--card);
  color: var(--fg);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
.cookie-box{ padding:16px 18px; }
.cookie-actions{ display:flex; justify-content:flex-end; gap:10px }
.cookie-actions button{
  padding:10px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.2);
  color:var(--fg);
  cursor:pointer;
}
.cookie-actions button:hover{ filter:brightness(1.05) }

/* a11y */
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
