:root {
  --radius: 0;
  --background: #0f0f0f;
  --foreground: #f0eee8;
  --muted: #212121;
  --muted-foreground: #9a978c;
  --secondary: #212121;
  --border: rgba(255, 255, 255, 0.12);
  --input: rgba(255, 255, 255, 0.1);
  --destructive: #c44a3a;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.005em;
  margin: 0;
}

.hairline {
  border-top: 1px solid color-mix(in srgb, var(--foreground) 18%, transparent);
}

.hairline--sm {
  width: 3rem;
}

.hairline--center {
  margin-left: auto;
  margin-right: auto;
}

.fade-in {
  animation: sc-fade-in 1.2s ease-out both;
}

.fade-in-slow {
  animation: sc-fade-in-slow 2s ease-out both;
}

@keyframes sc-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sc-fade-in-slow {
  from { opacity: 0; }
  to { opacity: 1; }
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--muted-foreground);
}

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
}

.muted {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.text-sm { font-size: 0.875rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.hidden { display: none !important; }

/* Site chrome */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--background) 70%, transparent);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .site-header__inner {
    padding: 0 3rem;
    height: 5rem;
  }
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1;
}

@media (min-width: 768px) {
  .brand__name { font-size: 1.125rem; }
}

.brand__dot { color: var(--muted-foreground); }

.brand__with {
  display: none;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  line-height: 1;
}

@media (min-width: 640px) {
  .brand__with { display: flex; }
}

.brand__with-italic {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: normal;
  font-size: 11px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 300;
}

.nav-desktop a {
  color: var(--muted-foreground);
  transition: color 0.5s;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--foreground);
}

.nav-mobile {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.nav-mobile a { color: var(--muted-foreground); }

.site-main { flex: 1; }

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 8rem;
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    padding: 2.5rem 3rem;
    text-align: left;
  }
}

.site-footer__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__logo {
  height: 1.5rem;
  width: auto;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .site-footer__logo { height: 1.75rem; }
}

/* Forms */
.field-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.field-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  outline: none;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 300;
  transition: border-color 0.3s;
}

.field-input:focus {
  border-bottom-color: var(--foreground);
}

.resize-none { resize: none; }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--foreground);
  background: transparent;
  padding: 1rem 2.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.5s, color 0.5s;
  text-align: center;
}

.btn-outline:hover:not(:disabled) {
  background: var(--foreground);
  color: var(--background);
}

.btn-outline:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-outline.full { width: 100%; }

.stack-6 { display: flex; flex-direction: column; gap: 1.5rem; }
.stack-8 { display: flex; flex-direction: column; gap: 2rem; }

.grid-2 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-error {
  color: var(--destructive);
  font-size: 0.875rem;
}

.form-notice {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  border: 1px solid var(--border);
  padding: 1rem;
}

.link-muted {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.link-muted:hover { color: var(--foreground); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  padding-top: 0.5rem;
}

.consent input { margin-top: 0.2rem; accent-color: var(--foreground); }

/* Portal */
.portal {
  min-height: 100vh;
  display: grid;
  background: var(--background);
}

@media (min-width: 768px) {
  .portal { grid-template-columns: 1fr 1fr; }
}

.portal__visual {
  position: relative;
  display: none;
  overflow: hidden;
}

@media (min-width: 768px) {
  .portal__visual { display: block; }
}

.portal__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.portal__visual-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.6), rgba(15,15,15,0.2), rgba(15,15,15,0.8));
}

.portal__visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
}

@media (min-width: 1024px) {
  .portal__visual-content { padding: 4rem; }
}

.portal__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-style: italic;
  line-height: 1.4;
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
  max-width: 28rem;
  margin: 0;
}

.portal__form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

@media (min-width: 768px) {
  .portal__form { padding: 4rem; }
}

.portal__form-inner { width: 100%; max-width: 28rem; }

.portal__mobile-brand {
  display: block;
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .portal__mobile-brand { display: none; }
}

.portal__links {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}

.portal__links a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.portal__links a:hover { color: var(--foreground); }

.status-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.status-screen__actions {
  display: flex;
  gap: 1.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.status-screen__actions a { color: var(--muted-foreground); }
.status-screen__actions a:hover { color: var(--foreground); }

/* Home */
.hero {
  position: relative;
  height: 88vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,15,15,0.3), rgba(15,15,15,0.1), var(--background));
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.5rem 6rem;
  text-align: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  max-width: 56rem;
  line-height: 1.1;
}

.hero__tagline {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero__tagline { font-size: 1rem; }
}

.prose-block {
  max-width: 48rem;
  margin: 0 auto;
  padding: 8rem 1.5rem;
}

@media (min-width: 768px) {
  .prose-block { padding: 10rem 1.5rem; }
}

.prose-block--center { text-align: center; }

.prose {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1rem;
  line-height: 1.9;
  color: color-mix(in srgb, var(--foreground) 85%, transparent);
  font-weight: 300;
}

@media (min-width: 768px) {
  .prose { font-size: 1.125rem; }
}

.prose p { margin: 0; }

.split {
  display: grid;
}

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; }
}

.split__media {
  aspect-ratio: 4 / 5;
}

@media (min-width: 768px) {
  .split__media { aspect-ratio: auto; min-height: 100%; }
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__copy {
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .split__copy { padding: 8rem 4rem; }
}

.split__copy-inner {
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
}

.link-underline {
  display: inline-block;
  border-bottom: 1px solid var(--foreground);
  padding-bottom: 0.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  transition: color 0.3s;
}

.link-underline:hover { color: var(--muted-foreground); }

.quote-block {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-style: italic;
  line-height: 1.6;
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
  margin: 0;
}

.fullbleed {
  position: relative;
}

.fullbleed img {
  width: 100%;
  height: 70vh;
  min-height: 480px;
  object-fit: cover;
}

.fullbleed__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent, transparent);
}

.fullbleed__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1.5rem 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .fullbleed__caption { padding: 0 4rem 3rem; }
}

/* Page headers */
.page-header {
  max-width: 48rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .page-header { padding: 8rem 1.5rem 4rem; }
}

.page-header--gallery { padding-bottom: 4rem; }
@media (min-width: 768px) {
  .page-header--gallery { padding-bottom: 5rem; }
}

.figure-wide {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.figure-wide img {
  width: 100%;
  height: 60vh;
  min-height: 420px;
  object-fit: cover;
}

.figure-narrow {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.figure-narrow img {
  width: 100%;
  object-fit: cover;
}

.article-prose {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1rem;
  line-height: 1.9;
  color: color-mix(in srgb, var(--foreground) 85%, transparent);
  font-weight: 300;
}

@media (min-width: 768px) {
  .article-prose {
    padding: 5rem 1.5rem;
    font-size: 1.125rem;
  }
}

.closing-italic {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-style: italic;
  text-align: center;
  padding-top: 3rem;
  color: color-mix(in srgb, var(--foreground) 95%, transparent);
  margin: 0;
}

/* Gallery */
.gallery-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .gallery-list { gap: 12rem; }
}

.car-hero {
  position: relative;
  width: 100%;
}

.car-hero img {
  width: 100%;
  height: 70vh;
  min-height: 480px;
  object-fit: cover;
}

.car-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), transparent, transparent);
}

.car-hero__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1.5rem 3rem;
}

@media (min-width: 768px) {
  .car-hero__meta { padding: 0 4rem 3rem; }
}

.car-hero__name {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
}

.car-hero__sub {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-top: 0.75rem;
}

.car-provenance {
  max-width: 48rem;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}

.car-provenance p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 300;
  line-height: 1.35;
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
  margin: 0;
}

.car-plates {
  max-width: 72rem;
  margin: 5rem auto 0;
  padding: 0 1.5rem;
}

.plates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .plates-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.plates-grid__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--secondary);
}

.plates-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}

.plates-grid__item img:hover {
  transform: scale(1.02);
}

/* Contact */
.contact-form {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.contact-follow {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.contact-follow a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.contact-follow a:hover { color: var(--foreground); }

.map-section {
  border-top: 1px solid var(--border);
}

.map-section__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .map-section__inner { padding: 8rem 1.5rem; }
}

.map-section__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.map-section__quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.35;
  max-width: 48rem;
  margin: 0 auto;
}

.map-frame {
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.map-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.map-labels {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .map-labels { grid-template-columns: repeat(3, 1fr); }
}

/* Admin */
.admin-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

@media (min-width: 768px) {
  .admin-wrap { padding: 8rem 1.5rem; }
}

.admin-tabs {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.admin-tabs a {
  padding-bottom: 1rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.admin-tabs a:hover { color: var(--foreground); }

.admin-tabs a.is-active {
  color: var(--foreground);
  border-bottom: 1px solid var(--foreground);
  margin-bottom: -1px;
}

.subtabs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.subtabs a,
.subtabs button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.subtabs a.is-active,
.subtabs button.is-active,
.subtabs a:hover,
.subtabs button:hover {
  color: var(--foreground);
}

.admin-card {
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .admin-card { padding: 2rem; }
}

.admin-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-ghost {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
}

.btn-ghost:hover { color: var(--foreground); }

.btn-sm {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  border: 1px solid var(--foreground);
  padding: 0.5rem 1rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.btn-sm:hover {
  background: var(--foreground);
  color: var(--background);
}

.btn-sm.danger {
  border-color: var(--border);
}

.btn-sm.danger:hover {
  border-color: var(--destructive);
  color: var(--destructive);
  background: transparent;
}

.admin-dl {
  margin-top: 2rem;
  display: grid;
  gap: 1rem 2.5rem;
}

@media (min-width: 768px) {
  .admin-dl { grid-template-columns: 1fr 1fr; }
}

.admin-dl__full { grid-column: 1 / -1; }

.admin-dl dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.admin-dl dd {
  margin: 0;
  font-weight: 300;
  color: color-mix(in srgb, var(--foreground) 90%, transparent);
}

.car-row {
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.car-row img,
.car-row__placeholder {
  width: 6rem;
  height: 5rem;
  object-fit: cover;
  background: var(--secondary);
  flex-shrink: 0;
}

.car-row__body { flex: 1; min-width: 0; }

.upload-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.upload-preview,
.upload-empty {
  width: 8rem;
  height: 6rem;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.upload-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-foreground);
  text-align: center;
  padding: 0.5rem;
}

.thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .thumbs { grid-template-columns: repeat(4, 1fr); }
}

.thumbs__item {
  position: relative;
}

.thumbs__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.thumbs__item button {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: rgba(0,0,0,0.7);
  border: 0;
  color: #fff;
  font-size: 10px;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

/* Toasts */
.toast-root {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.875rem 1.25rem;
  font-size: 0.8125rem;
  min-width: 220px;
  max-width: 360px;
  animation: sc-fade-in 0.3s ease-out;
}

.toast.error {
  border-color: var(--destructive);
  color: #f5c4be;
}

.loading-center {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  padding-bottom: 6rem;
}
