/* Alberta Parents for Stronger Vaping Restrictions */
:root {
  --burgundy: #7A2E3B;
  --burgundy-700: #5F2330;
  --slate: #3C5673;
  --slate-700: #2C405A;
  --cream: #F6F1E7;
  --cream-2: #EFE7D6;
  --paper: #FBF8F1;
  --ink: #1F1A1A;
  --ink-2: #3A3535;
  --muted: #756E66;
  --border: #DDD1B8;
  --max: 1100px;
  --font-display: "Sentient", Georgia, serif;
  --font-body: "Supreme", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--burgundy-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 4.2vw, 3rem); font-weight: 500; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 20;
}
.site-header .inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 1.25rem;
  max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: var(--slate-700); }
.brand-mark { width: 44px; height: 44px; flex: 0 0 44px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500; font-size: 1.08rem; line-height: 1.15;
  color: var(--slate-700);
  max-width: 260px;
}
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--burgundy); margin-bottom: 2px; }
nav.primary { margin-left: auto; }
nav.primary ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.4rem; }
nav.primary a { font-size: .95rem; color: var(--ink-2); text-decoration: none; font-weight: 500; }
nav.primary a:hover, nav.primary a.active { color: var(--burgundy); }
.menu-toggle { display: none; background: var(--paper); border: 1px solid var(--border); padding: .4rem .7rem; font: inherit; border-radius: 999px; }

/* Hero */
.hero {
  background: var(--cream);
  padding: 4rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto -10% -40% auto;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(122,46,59,.10), transparent 60%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.eyebrow { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--burgundy); font-weight: 600; margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 1rem; color: var(--slate-700); }
.hero p.lead { font-size: 1.12rem; color: var(--ink-2); max-width: 36rem; }
.hero-aside {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  border-radius: 12px;
  position: relative;
}
.hero-aside::before {
  content: "";
  position: absolute; left: 0; top: 1.5rem; bottom: 1.5rem; width: 4px;
  background: var(--burgundy);
  border-radius: 4px;
}
.hero-aside h3 { font-size: 1.05rem; margin: 0 0 .5rem; }
.hero-aside p { font-size: .95rem; color: var(--ink-2); margin: 0; }

/* Buttons */
.btn { display: inline-block; padding: .8rem 1.5rem; font-family: var(--font-body); font-weight: 600; font-size: .95rem; text-decoration: none; border-radius: 999px; border: 1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--burgundy); color: var(--cream); }
.btn-primary:hover { background: var(--burgundy-700); color: var(--cream); }
.btn-outline { background: transparent; color: var(--slate-700); border-color: var(--slate-700); }
.btn-outline:hover { background: var(--slate-700); color: var(--cream); }
.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* Sections */
section.block { padding: 4rem 0; }
section.block + section.block { border-top: 1px solid var(--border); }
.section-title { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-title h2 { margin: 0; }
.section-title .lead { color: var(--ink-2); max-width: 36rem; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 12px;
}
.card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.card p { font-size: .95rem; color: var(--ink-2); margin: 0; }
.card a.more { font-size: .9rem; font-weight: 600; margin-top: .75rem; display: inline-block; }

/* Priority list */
.priority-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.priority-list li {
  display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; align-items: start;
  padding: 1.25rem 1.5rem; border: 1px solid var(--border); background: var(--paper);
  border-radius: 12px;
}
.priority-list .dot { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--burgundy); margin-top: .25rem; flex: 0 0 1.25rem; }
.priority-list h3 { margin: 0 0 .25rem; font-size: 1.05rem; color: var(--slate-700); }
.priority-list p { margin: 0; color: var(--ink-2); font-size: .95rem; }

/* Publications */
.pub-list { list-style: none; padding: 0; margin: 0; }
.pub-list li { padding: 1.5rem 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 9rem 1fr; gap: 1.5rem; align-items: start; }
.pub-list li:last-child { border-bottom: none; }
.pub-list time { color: var(--muted); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 500; }
.pub-list h3 { font-size: 1.15rem; margin: 0 0 .25rem; }
.pub-list p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.pub-list .tag { display: inline-block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--burgundy); margin-top: .25rem; font-weight: 600; }

/* Article */
.article-header { padding: 3rem 0 1.5rem; background: var(--cream); }
.article-header .meta { font-size: .85rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-weight: 500; margin-bottom: 1rem; }
.article-body { max-width: 38rem; margin: 0 auto; padding: 3rem 1.25rem; font-size: 1.05rem; }
.article-body h2 { font-size: 1.5rem; margin-top: 2rem; }
.article-body h3 { font-size: 1.15rem; margin-top: 1.5rem; }
.article-body blockquote { border-left: 3px solid var(--burgundy); padding: .25rem 0 .25rem 1.25rem; margin: 1.5rem 0; color: var(--ink-2); font-style: italic; }
.article-body ul, .article-body ol { padding-left: 1.25rem; }
.article-body li { margin-bottom: .35rem; }
.article-footer { max-width: 38rem; margin: 0 auto; padding: 0 1.25rem 3rem; color: var(--muted); font-size: .9rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }

/* Form */
.form-wrap { max-width: 38rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; color: var(--slate-700); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  padding: .7rem .9rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--burgundy);
  outline-offset: 1px;
  border-color: var(--burgundy);
}
.field .hint { display: block; font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.checkbox-row { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--ink-2); }
.checkbox-row input { width: auto; margin-top: .3rem; }

/* Footer */
.site-footer {
  background: var(--slate-700);
  color: #D8DBE3;
  padding: 3rem 0 2rem;
}
.site-footer a { color: #E9D8B6; }
.site-footer h4 { font-family: var(--font-display); color: var(--cream); font-size: 1.05rem; margin: 0 0 .75rem; font-weight: 500; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .35rem; font-size: .92rem; }
.footer-bottom { border-top: 1px solid #4A6480; margin-top: 2rem; padding-top: 1.25rem; font-size: .82rem; color: #9DA9BD; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* Misc */
.note {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  font-size: .92rem;
  color: var(--ink-2);
  border-radius: 8px;
}
.kicker { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--burgundy); font-weight: 600; }

@media (max-width: 820px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pub-list li { grid-template-columns: 1fr; gap: .25rem; }
  nav.primary ul { gap: .9rem; }
  .menu-toggle { display: inline-block; }
  nav.primary { display: none; }
  nav.primary.open { display: block; position: absolute; right: 1rem; top: 70px; background: var(--paper); border: 1px solid var(--border); padding: 1rem; border-radius: 8px; }
  nav.primary.open ul { flex-direction: column; gap: .6rem; }
  .site-header .inner { position: relative; }
  .brand-name { font-size: .95rem; }
}

:focus-visible { outline: 2px solid var(--burgundy); outline-offset: 2px; }
