:root {
  --bg: #f4eee7;
  --bg-rgb: 244, 238, 231;
  --panel: #fffaf6;
  --panel-rgb: 255, 250, 246;
  --text: #241a12;
  --muted: #5e5145;
  --accent: #b56a2f;
  --accent-strong: #975421;
  --accent-rgb: 181, 106, 47;
  --accent-contrast: #1f150d;
  --line: rgba(90, 66, 48, 0.16);
  --shadow-sm: 0 14px 30px rgba(73, 52, 37, 0.08);
  --shadow-lg: 0 28px 52px rgba(73, 52, 37, 0.12);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --nav-offset: 78px;
  --sans: 'DM Sans', sans-serif;
  --body: 'Nunito', sans-serif;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.12), transparent 28%),
    linear-gradient(180deg, rgba(112, 100, 84, 0.62) 0%, transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  transform: translateY(-160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 28px;
  background: rgba(var(--bg-rgb), 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  margin-right: 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  margin-left: auto;
  list-style: none;
  display: flex;
  gap: 8px;
}

.nav-links a,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover,
.theme-toggle:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: var(--line);
  color: var(--text);
  transform: translateY(-1px);
}

.theme-toggle {
  margin-left: 4px;
  cursor: pointer;
  background: var(--panel);
  border-color: var(--line);
  color: var(--text);
}

main {
  display: block;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-offset) + 42px) 36px 42px;
}

.hero-inner {
  max-width: 820px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent-strong);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-name {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: clamp(52px, 8vw, 94px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-name .light {
  color: var(--muted);
  font-weight: 300;
}

.hero-concrete {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hero-summary {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: 17px;
  color: var(--muted);
}

.hero-summary a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.35);
  text-underline-offset: 3px;
}

.hero-summary a:hover {
  text-decoration-color: var(--accent);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin-bottom: 24px;
}

.hero-metric {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(var(--panel-rgb), 0.82);
  box-shadow: var(--shadow-sm);
}

.hero-metric-value {
  display: block;
  color: var(--text);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-metric-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-currently {
  max-width: 720px;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid rgba(var(--accent-rgb), 0.45);
  color: var(--muted);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(var(--panel-rgb), 0.82);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.click-to-copy {
  cursor: pointer;
  font: inherit;
}

button.contact-item {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(var(--panel-rgb), 0.84);
  box-shadow: var(--shadow-sm);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.click-to-copy.is-copied {
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.1);
}

.click-to-copy.is-copied .copy-label {
  color: var(--accent-strong);
}

.reader-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 36px 80px;
}

.reader-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.ongoing-block {
  padding: 38px 0 8px;
}

.ongoing-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.ongoing-block-label {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ongoing-block-link {
  color: var(--accent-strong);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.ongoing-block-link:hover {
  color: var(--accent);
}

.ongoing-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.ongoing-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(var(--panel-rgb), 0.6);
  color: var(--text);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.ongoing-chip:hover {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(var(--accent-rgb), 0.06);
  transform: translateX(2px);
}

.ongoing-dot {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a1958a;
  box-shadow: 0 0 0 3px rgba(161, 149, 138, 0.18);
  animation: ongoing-pulse 1.8s ease-in-out infinite;
}

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

.ongoing-chip-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
}

.ongoing-chip-tag {
  margin-left: auto;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(var(--bg-rgb), 0.6);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading .num {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: var(--sans);
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.exp-featured,
.project-card,
.contact-item,
.r-skill-card {
  border: 1px solid var(--line);
  background: rgba(var(--panel-rgb), 0.84);
  box-shadow: var(--shadow-sm);
}

.exp-featured {
  padding: 28px 30px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
}

.exp-featured-label {
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exp-featured-company {
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.exp-sub-role {
  margin-bottom: 18px;
}

.exp-sub-role:last-child {
  margin-bottom: 0;
}

.exp-sub-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
}

.exp-sub-title span {
  color: var(--muted);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
}

.exp-highlight {
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.exp-sub-divider {
  margin: 18px 0;
  border: none;
  border-top: 1px solid var(--line);
}

.exp-list {
  margin-top: 24px;
}

.exp-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.exp-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.exp-date {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.exp-company {
  color: var(--accent-strong);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.exp-title {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
}

.exp-points {
  list-style: none;
  color: var(--muted);
}

.exp-points li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
}

.exp-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.project-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.project-card.featured {
  border-left: 4px solid var(--accent);
}

.project-card + .project-card,
.project-card + .projects-shipped {
  margin-top: 18px;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.project-name {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(var(--panel-rgb), 0.92);
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.project-link:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.24);
  background: rgba(var(--accent-rgb), 0.08);
}

.project-link.primary {
  color: var(--accent-strong);
}

.project-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  text-align: right;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-strong);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: ongoing-pulse 1.8s ease-in-out infinite;
}

.status-pill.status-pill-paused::before {
  animation: none;
  background: var(--muted);
}

.status-pill.status-pill-research {
  border-color: rgba(120, 120, 140, 0.22);
  background: rgba(120, 120, 140, 0.1);
  color: var(--muted);
}

.status-pill.status-pill-research::before {
  background: var(--muted);
}

.status-pill.status-pill-planned {
  border-style: dashed;
  border-color: rgba(var(--accent-rgb), 0.35);
  background: transparent;
  color: var(--muted);
}

.status-pill.status-pill-planned::before {
  animation: none;
  background: var(--muted);
  opacity: 0.6;
}

.status-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #a1958a;
  box-shadow: 0 0 0 3px rgba(161, 149, 138, 0.18);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.status-dot.status-up {
  background: #3bb371;
  box-shadow: 0 0 0 3px rgba(59, 179, 113, 0.22);
}

.status-dot.status-down {
  background: #d35454;
  box-shadow: 0 0 0 3px rgba(211, 84, 84, 0.22);
}

@keyframes status-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.status-dot:not(.status-up):not(.status-down) {
  animation: status-pulse 1.4s ease-in-out infinite;
}

.project-desc {
  margin-bottom: 14px;
  color: var(--muted);
}

.project-highlights {
  list-style: none;
  margin: 0 0 16px;
  color: var(--muted);
}

.project-highlights li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  line-height: 1.55;
}

.project-highlights li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.project-highlights strong {
  color: var(--text);
  font-family: var(--sans);
  font-weight: 700;
}

.project-desc code,
.project-highlights code {
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.metric {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(var(--accent-rgb), 0.05);
}

.metric-val {
  display: block;
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.metric-key {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent-strong);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.projects-shipped {
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(var(--panel-rgb), 0.7);
}

.projects-shipped-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projects-shipped-list {
  list-style: none;
  color: var(--muted);
}

.projects-shipped-list li {
  position: relative;
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--line);
}

.projects-shipped-list li:last-child {
  border-bottom: none;
}

.projects-shipped-list li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.projects-shipped-list strong {
  color: var(--text);
  font-weight: 700;
}

.r-skill-group {
  margin-bottom: 24px;
}

.r-skill-group:last-child {
  margin-bottom: 0;
}

.r-skill-group-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.r-skill-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.r-skill-card {
  padding: 14px 16px;
  border-radius: var(--radius-md);
}

.r-skill-name {
  display: block;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
}

.r-skill-name.core {
  color: var(--accent-strong);
}

.r-skill-desc {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.r-familiar {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.contact-item:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.18);
  background: rgba(var(--accent-rgb), 0.06);
}

.contact-type {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-val {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.contact-download {
  grid-column: 1 / -1;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 36px 32px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .project-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --nav-offset: 122px;
  }

  nav {
    padding: 12px 16px 10px;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .nav-logo {
    margin-right: auto;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .nav-links {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero {
    padding: calc(var(--nav-offset) + 22px) 20px 36px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .btn {
    width: 100%;
  }

  .reader-wrap {
    padding: 0 20px 68px;
  }

  .reader-section {
    padding: 48px 0;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-header {
    flex-direction: column;
  }

  .project-metrics {
    grid-template-columns: 1fr;
  }

  .r-skill-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-download {
    grid-column: auto;
  }

  footer {
    flex-direction: column;
    padding: 0 20px 28px;
  }
}

@media (max-width: 560px) {
  :root {
    --nav-offset: 126px;
  }

  .theme-toggle {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-name {
    font-size: 50px;
  }

  .hero-concrete {
    font-size: 18px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --bg: #171311;
    --bg-rgb: 23, 19, 17;
    --panel: #221c18;
    --panel-rgb: 34, 28, 24;
    --text: #f5ede4;
    --muted: #d1c1ae;
    --accent: #eca562;
    --accent-strong: #f1b477;
    --accent-rgb: 236, 165, 98;
    --accent-contrast: #22150d;
    --line: rgba(255, 236, 219, 0.14);
    --shadow-sm: 0 18px 40px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 28px 52px rgba(0, 0, 0, 0.34);
    color-scheme: dark;
  }
}

html[data-theme="dark"] {
  --bg: #171311;
  --bg-rgb: 23, 19, 17;
  --panel: #221c18;
  --panel-rgb: 34, 28, 24;
  --text: #f5ede4;
  --muted: #d1c1ae;
  --accent: #eca562;
  --accent-strong: #f1b477;
  --accent-rgb: 236, 165, 98;
  --accent-contrast: #22150d;
  --line: rgba(255, 236, 219, 0.14);
  --shadow-sm: 0 18px 40px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 28px 52px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}
