﻿:root {
  color-scheme: dark;
  --ink: #111111;
  --graphite: #1c1c1c;
  --ivory: #f5f1e8;
  --copper: #b56a3b;
  --amber: #8d5a19;
  --panel-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, rgba(181, 106, 59, 0.18), transparent 28%), var(--ink);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.min-h-screen { min-height: 100vh; }
.bg-ink { background-color: var(--ink); }
.bg-graphite\/60 { background-color: rgba(28, 28, 28, 0.6); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-black\/10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-amber\/10 { background-color: rgba(141, 90, 25, 0.1); }
.border { border-width: 1px; border-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }
.border-amber\/40 { border-color: rgba(141, 90, 25, 0.4); }
.border-dashed { border-style: dashed; }
.shadow-panel { box-shadow: var(--panel-shadow); }
.overflow-hidden { overflow: hidden; }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-\[1\.5rem\] { border-radius: 1.5rem; }
.rounded-\[1\.75rem\] { border-radius: 1.75rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-copper { color: var(--copper); }
.text-white { color: #ffffff; }
.text-ivory { color: var(--ivory); }
.text-ivory\/56 { color: rgba(245, 241, 232, 0.56); }
.text-ivory\/60 { color: rgba(245, 241, 232, 0.6); }
.text-ivory\/62 { color: rgba(245, 241, 232, 0.62); }
.text-ivory\/66 { color: rgba(245, 241, 232, 0.66); }
.text-ivory\/68 { color: rgba(245, 241, 232, 0.68); }
.text-ivory\/72 { color: rgba(245, 241, 232, 0.72); }
.text-ivory\/75 { color: rgba(245, 241, 232, 0.75); }
.text-ivory\/80 { color: rgba(245, 241, 232, 0.8); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-tight { line-height: 1.1; }
.uppercase { text-transform: uppercase; }
.outline-none { outline: none; }
.underline { text-decoration: underline; }
.underline-offset-4 { text-underline-offset: 4px; }
.transition { transition: all 0.2s ease; }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:text-ivory:hover { color: var(--ivory); }
.bg-copper { background-color: var(--copper); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, rgba(255,255,255,0.05), transparent); }
.from-white\/5 { }
.to-transparent { }
.tracking-\[0\.24em\] { letter-spacing: 0.24em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-\[0\.35em\] { letter-spacing: 0.35em; }
.tracking-\[0\.4em\] { letter-spacing: 0.4em; }
.tracking-\[0\.45em\] { letter-spacing: 0.45em; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.accent-copper { accent-color: var(--copper); }

@media (min-width: 768px) {
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-\[1\.5fr_1fr_1fr_auto\] { grid-template-columns: 1.5fr 1fr 1fr auto; }
  .md\:items-center { align-items: center; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
  .xl\:grid-cols-\[1\.2fr_0\.8fr\] { grid-template-columns: 1.2fr 0.8fr; }
}
