@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ── TOKENS ── */
:root {
  --dark:        #111214;
  --dark-mid:    #1c1e22;
  --accent:      #c8a96e;
  --accent-light:#e8c98e;
  --light:       #f5f3ef;
  --text-muted:  #888;
  --white:       #ffffff;
  --border:      rgba(200,169,110,0.2);
}

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

body, h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

body {
  background: var(--light);
  color: var(--dark);
  max-width: 1600px;
  margin: 0 auto;
}

html { scroll-behavior: smooth; }

/* ── SIDEBAR ── */
#mySidebar {
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 100vh;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s ease;
}

.sidebar-profile {
  padding: 40px 28px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-profile img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  display: block;
  margin-bottom: 16px;
}

.sidebar-profile h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.sidebar-profile p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.sidebar-profile .role {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 3px;
}

.sidebar-nav {
  padding: 24px 0;
  flex: 1;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s, background 0.2s;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--accent);
  background: rgba(200,169,110,0.06);
  border-left-color: var(--accent);
}

.sidebar-nav a i { width: 16px; text-align: center; font-size: 0.85rem; }

.sidebar-social {
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 14px;
}

.sidebar-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.sidebar-social a:hover { color: var(--accent); }
.sidebar-social svg { fill: currentColor; }

.availability-badge {
  margin: 0 28px 20px;
  padding: 8px 14px;
  background: rgba(200,169,110,0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.availability-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── MAIN CONTENT ── */
#main-content {
  margin-left: 280px;
  min-height: 100vh;
}

/* ── MOBILE TOGGLE ── */
.mobile-toggle {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

#myOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}

/* ── HERO (index) ── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-family: "Lora", serif;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }

.hero-stat {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* ── SECTION HEADERS ── */
.section-wrap { padding: 60px 60px 0; }

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.section-wrap h2 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--dark);
}

/* ── ABOUT (index) ── */
.about-section {
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
  font-family: "Lora", serif;
}

.about-highlights { display: flex; flex-direction: column; gap: 16px; }

.highlight-item {
  padding: 20px 24px;
  background: var(--white);
  border-left: 3px solid var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.highlight-item h5 {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-item p { font-size: 0.9rem; color: #444; line-height: 1.5; }

/* ── PROJECT GRID (index) ── */
.projects-section { padding: 20px 60px 60px; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.project-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.project-card:hover .card-img img { transform: scale(1.04); }

.card-img {
  overflow: hidden;
  height: 200px;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--dark);
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
}

.card-body { padding: 22px 24px 26px; }

.card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.card-body p { font-size: 0.83rem; color: #666; line-height: 1.65; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.card-link i { font-size: 0.75rem; }

/* ── SKILLS (index) ── */
.skills-section {
  background: var(--dark);
  color: var(--white);
  padding: 60px;
}

.skills-section .section-wrap { padding: 0 0 40px; }
.skills-section .section-wrap h2 { color: var(--white); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 44px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skill-name {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
}

.skill-pct { font-size: 0.72rem; font-weight: 700; color: var(--accent); }

.skill-bar-bg {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
}

.tools-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.tools-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.tool-tag {
  padding: 7px 14px;
  border: 1px solid rgba(200,169,110,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}

.tool-tag:hover { border-color: var(--accent); color: var(--accent); }

.cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.cv-btn:hover { background: var(--accent-light); transform: translateY(-2px); }

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 80px 60px;
  background: var(--light);
}

.contact-section h2 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-info-intro {
  font-family: "Lora", serif;
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-item { display: flex; align-items: flex-start; gap: 18px; }

.contact-icon {
  width: 44px; height: 44px;
  background: var(--dark);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail h5 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-detail p { font-size: 0.92rem; font-weight: 600; color: var(--dark); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid #ddd;
  background: var(--white);
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }

.submit-btn {
  align-self: flex-start;
  padding: 14px 30px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
}

.submit-btn:hover { background: var(--accent); color: var(--dark); }

/* ── FOOTER ── */
footer.site-footer {
  background: var(--dark-mid);
  color: rgba(255,255,255,0.4);
  padding: 28px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

footer.site-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

footer.site-footer a:hover { color: var(--accent); }

/* ── PROJECT PAGE HERO ── */
.project-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.45);
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }

.project-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.project-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark-mid);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child { border-right: none; }

.stat-item .label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-item .value { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.stat-item .value.accent { color: var(--accent); }

/* ── PROJECT CONTENT LAYOUT ── */
.project-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: start;
}

.project-main {
  padding: 60px;
  border-right: 1px solid #e8e4dc;
}

.project-main h2 {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--dark);
  padding-top: 40px;
}

.project-main h2:first-child { padding-top: 0; }

.project-main p {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 18px;
}

.project-divider {
  border: none;
  border-top: 1px solid #e8e4dc;
  margin: 40px 0 0;
}

/* Responsibilities list */
.resp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.resp-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
  font-family: "Lora", serif;
}

.resp-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* Festivals list (named items) */
.festival-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.festival-list li {
  padding: 10px 16px;
  background: var(--white);
  border-left: 3px solid var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

/* Results grid */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.result-item {
  padding: 20px;
  background: var(--white);
  border-left: 3px solid var(--accent);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-size: 0.88rem;
  line-height: 1.55;
  color: #444;
}

/* ── PROJECT SIDEBAR PANEL ── */
.project-sidebar {
  padding: 50px 32px;
  position: sticky;
  top: 0;
}

.sidebar-section { margin-bottom: 36px; }

.sidebar-section h4 {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-section p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  font-family: "Lora", serif;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid #ddd;
  font-size: 0.7rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.03em;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: var(--dark);
  color: var(--white);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 8px;
}

.back-btn:hover { background: var(--accent); color: var(--dark); }

/* ── NEXT PROJECT BAR ── */
.next-project {
  background: var(--dark);
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: background 0.2s;
}

.next-project:hover { background: var(--dark-mid); }

.next-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.next-title { font-size: 1.3rem; font-weight: 900; color: var(--white); }
.next-arrow { color: var(--accent); font-size: 1.5rem; }

/* ── ABOUT PAGE ── */
.about-page-content { padding: 60px; }

.about-page-content > p {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
  max-width: 760px;
}

.about-page-divider {
  border: none;
  border-top: 1px solid #e8e4dc;
  margin: 48px 0;
}

.about-page-content h2 {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--dark);
}

.projects-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 20px;
}

.personal-project { }

/* Slideshow overrides for about page */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 0 0 16px;
  border-radius: 0;
  overflow: hidden;
}

.slideshow-container img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.personal-project h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.personal-project h3 a {
  color: var(--accent);
  text-decoration: none;
}

.personal-project h3 a:hover { text-decoration: underline; }

.personal-project p {
  font-family: "Lora", serif;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

.about-outro {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
  max-width: 760px;
}

/* ── SLIDESHOW CONTROLS (keep from CSS4) ── */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 8px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
  z-index: 10;
}

.next { right: 0; }
.prev:hover, .next:hover { background-color: rgba(0,0,0,0.85); }

.mySlides { display: none; }
.golf-slide, .car-slide, .raffle-slide { display: none; }

.fade { animation: fade 0.8s; }
@keyframes fade { from { opacity: .4 } to { opacity: 1 } }

.dot {
  cursor: pointer;
  height: 10px; width: 10px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}

.dot.active, .dot:hover { background-color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #mySidebar { transform: translateX(-100%); }
  #mySidebar.open { transform: translateX(0); }
  #main-content { margin-left: 0; }
  .mobile-toggle { display: flex; }

  .hero { padding: 60px 28px; }
  .hero-stats { gap: 24px; }

  .about-section { grid-template-columns: 1fr; padding: 40px 28px; }
  .section-wrap { padding-left: 28px; padding-right: 28px; }
  .projects-section { padding-left: 28px; padding-right: 28px; }
  .project-grid { grid-template-columns: 1fr 1fr; }

  .skills-section { padding: 50px 28px; }
  .skills-grid { grid-template-columns: 1fr; }

  .contact-section { padding: 50px 28px; }
  .contact-grid { grid-template-columns: 1fr; }

  footer.site-footer { flex-direction: column; gap: 8px; padding: 24px 28px; }

  /* Project pages */
  .project-hero { height: 300px; }
  .project-hero-overlay { padding: 30px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .project-content { grid-template-columns: 1fr; }
  .project-main { padding: 40px 28px; border-right: none; }
  .project-sidebar { padding: 28px; border-top: 1px solid #e8e4dc; position: static; }
  .results-grid { grid-template-columns: 1fr; }
  .festival-list { grid-template-columns: 1fr; }
  .next-project { padding: 40px 28px; }

  /* About page */
  .about-page-content { padding: 40px 28px; }
  .projects-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .project-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
