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

:root {
  --green: #2D5A3D;
  --green-dark: #1a3828;
  --green-mid: #3d7a54;
  --green-light: #e8f0eb;
  --cream: #f5f0e8;
  --cream-dark: #ece5d6;
  --ink: #1a1a18;
  --ink-soft: #3a3a36;
  --muted: #7a7a72;
  --white: #ffffff;
  --accent: #c8a96e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green-dark);
  padding: 0 3rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-links {
  list-style: none;
  text-align: center;
}

.menu-links li {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.menu-overlay.active .menu-links li {
  opacity: 1;
  transform: translateY(0);
}

/* staggered animation for links */
.menu-overlay.active .menu-links li:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .menu-links li:nth-child(2) { transition-delay: 0.2s; }
.menu-overlay.active .menu-links li:nth-child(3) { transition-delay: 0.3s; }
.menu-overlay.active .menu-links li:nth-child(4) { transition-delay: 0.4s; }
.menu-overlay.active .menu-links li:nth-child(5) { transition-delay: 0.5s; }

.menu-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.menu-links a:active {
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-dark);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: var(--green-mid);
  opacity: 0.15;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%) contrast(1.05);
  display: block;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--green-dark));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 3rem;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 0.9rem 2rem;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.btn-outline {
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

/* ABOUT */
.about {
  background: var(--white);
  padding: 7rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--green-mid);
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.about-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-soft);
  font-weight: 300;
}

.about-text p + p { margin-top: 1.2rem; }

.skills-block { margin-top: 2.5rem; }

.skills-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 16px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 0;
  border-left: 2px solid var(--green-mid);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  margin-top: 0.5rem;
}

.stat {
  background: var(--white);
  padding: 2rem 1.5rem;
}

.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* PROJECTS */
.projects {
  background: var(--cream);
  padding: 7rem 0;
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.view-all {
  font-size: 0.85rem;
  color: var(--green-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--green-mid);
  padding-bottom: 2px;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.view-all:hover { color: var(--green-dark); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.project-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s;
  cursor: pointer;
}

.project-card:hover { transform: translateY(-4px); }

.project-card:first-child {
  grid-column: 1 / 3;
}

.project-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.project-card:first-child .project-img { height: 280px; }

.p-ecom { background: #f0ebe0; }
.p-dash { background: #e0e8f0; }
.p-app { background: #e8e0f0; }

.project-icon {
  font-size: 4rem;
  opacity: 0.4;
}

.project-info {
  padding: 1.5rem;
}

.project-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.project-tech {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tech-badge {
  font-size: 0.72rem;
  padding: 3px 10px;
  border: 1px solid var(--cream-dark);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* CONTACT */
.contact {
  background: var(--green-dark);
  padding: 7rem 0;
}

.contact .section-label { color: var(--accent); }
.contact .section-label::before { background: var(--accent); }
.contact .section-title { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.social-link:hover { color: var(--white); }

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}

.social-link:hover .social-icon {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.form-group { margin-bottom: 1.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}

.contact input,
.contact textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.contact input:focus,
.contact textarea:focus {
  border-color: rgba(255,255,255,0.35);
}

.contact textarea { resize: vertical; min-height: 120px; }

.btn-send {
  margin-top: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--ink);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-send:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag { animation: fadeUp 0.6s ease both 0.1s; }
.hero-headline { animation: fadeUp 0.6s ease both 0.25s; }
.hero-sub { animation: fadeUp 0.6s ease both 0.4s; }
.hero-btns { animation: fadeUp 0.6s ease both 0.55s; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ========================================================================= */
/* JOURNAL PAGE STYLES (Added by JVG)                                        */
/* ========================================================================= */

.page-head {
  background: var(--green-dark);
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.page-head .section-label { color: var(--accent); }
.page-head .section-label::before { background: var(--accent); }
.page-head .section-title { color: var(--white); }

.tagbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 3rem 0;
}

.tagbar button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  border: 1px solid var(--cream-dark);
  color: var(--muted);
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.tagbar button:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
}

.tagbar button.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.year-sep {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 4rem 0 2rem;
}

.year-sep .yr {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--green-dark);
}

.year-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}

.j-entry.hidden { display: none; }
.year-sep.hidden { display: none; }

.post-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.post-head {
  padding: 8rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 4rem;
}

.p-date {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 1rem;
}

.p-date .dot-sep { margin: 0 10px; opacity: 0.3; }

.post-head h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1rem;
}

.p-sub {
  font-size: 1.2rem;
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
}

.post-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.post-body h2, .post-body h3 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}

.post-body p { margin-bottom: 1.5rem; }

.post-body a {
  color: var(--green-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--green-light);
  transition: border-color 0.2s;
}

.post-body a:hover { border-color: var(--green-mid); }

.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--muted);
}

.post-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2.5rem auto;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 0;
  border-top: 1px solid var(--cream-dark);
  margin-top: 4rem;
}

.pn {
  text-decoration: none;
  max-width: 45%;
}

.pn .dir {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.pn .pn-t {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}

.pn:hover .pn-t { color: var(--green-mid); }

.pn-home {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--cream-dark);
  padding: 8px 16px;
  transition: all 0.2s;
}

.pn-home:hover {
  background: var(--cream);
  color: var(--ink);
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.post-tags { justify-content: center; }
.tags a, .tags span {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: var(--green-light);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 500;
}

.journal-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.j-entry {
  background: var(--white);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.j-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.j-date {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.j-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.j-ex {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.j-go {
  color: var(--green-mid);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* CV TIMELINE */
.cv-timeline { display: flex; flex-direction: column; gap: 2rem; }
.cv-entry { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; border-bottom: 1px solid var(--cream-dark); padding-bottom: 2rem; }
.cv-entry:last-child { border-bottom: none; padding-bottom: 0; }
.cv-when { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; padding-top: 0.3rem; }
.cv-what { display: flex; flex-direction: column; }
.cv-title { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 0.3rem; }
.cv-org { font-size: 0.95rem; color: var(--green-mid); font-weight: 600; margin-bottom: 1rem; }
.cv-desc { list-style: none; margin: 0; padding: 0; }
.cv-desc li { position: relative; padding-left: 1.2rem; margin-bottom: 0.5rem; color: var(--ink-soft); line-height: 1.6; font-size: 0.95rem;}
.cv-desc li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
@media (max-width: 900px) { 
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo { min-height: 400px; max-height: 60vh; }
  .hero-photo::after { background: linear-gradient(to bottom, transparent 60%, var(--green-dark)); }
  .hero-content { padding: 3rem 1.5rem 5rem; text-align: center; align-items: center; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-btns { justify-content: center; width: 100%; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; text-align: center; }

  .about, .projects, .contact, .volunteer, .interests, .vita { padding: 4.5rem 0; }
  
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:first-child { grid-column: 1; }
  .project-img, .project-card:first-child .project-img { height: 200px; }
  
  .container { padding: 0 1.5rem; }
  
  .j-entry { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
    padding: 1.5rem;
  }
  .j-date { margin-bottom: 0.5rem; display: block; }
  .j-go { display: none; }

  .cv-entry { grid-template-columns: 1fr; gap: 0.5rem; }
  .cv-when { padding-top: 0; margin-bottom: 0.2rem; }

  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.75rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  .projects-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  
  .post-head { padding: 6rem 0 3rem; }
  .post-wrap { padding: 0 1.5rem; }
  .post-nav { flex-direction: column; gap: 2rem; align-items: flex-start; }
  .pn { max-width: 100%; }
  .pn-home { align-self: center; order: 3; }
  .tagbar { margin: 2rem 0; gap: 8px; }
  .tagbar button { padding: 10px 16px; font-size: 0.8rem; flex: 1 1 auto; min-width: 80px; }
}
