/* Project-local utility layer replacing the runtime Tailwind CDN. */
:root {
  --hz-gold: #c5a059;
  --hz-dark: #1a1a1a;
}

*, ::before, ::after { box-sizing: border-box; }
body.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.fixed { position: fixed; }
.relative { position: relative; }
.sticky { position: sticky; }
.top-\[100px\] { top: 100px; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-50 { z-index: 50; }

.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.flex-col { flex-direction: column; }
.flex-nowrap { flex-wrap: nowrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-items-center { justify-items: center; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-full { grid-column: 1 / -1; }

.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.h-full { height: 100%; }
.h-0\.5 { height: .125rem; }
.h-4 { height: 1rem; }
.h-8 { height: 2rem; }
.h-20 { height: 5rem; }
.h-\[60px\] { height: 60px; }

.max-w-none { max-width: none; }
.max-w-2xl { max-width: 42rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: .5rem; margin-right: .5rem; }
.mr-1 { margin-right: .25rem; }
.mr-2 { margin-right: .5rem; }
.mt-2 { margin-top: .5rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mb-1 { margin-bottom: .25rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.p-0 { padding: 0; }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-1 { padding-left: .25rem; padding-right: .25rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-40 { padding-top: 10rem; padding-bottom: 10rem; }
.pt-2 { padding-top: .5rem; }
.pt-16 { padding-top: 4rem; }
.pt-\[60px\] { padding-top: 60px; }
.pb-2 { padding-bottom: .5rem; }
.pb-3 { padding-bottom: .75rem; }
.pb-8 { padding-bottom: 2rem; }

.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-x-1 > :not([hidden]) ~ :not([hidden]) { margin-left: .25rem; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-cover { object-fit: cover; }
.cursor-pointer { cursor: pointer; }
.whitespace-nowrap { white-space: nowrap; }
.snap-x { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }

.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[3\/2\] { aspect-ratio: 3 / 2; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }

.rounded { border-radius: .25rem; }
.rounded-sm { border-radius: .125rem; }
.rounded-2xl { border-radius: 1rem; }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-transparent { border-color: transparent; }
.border-gold { border-color: var(--hz-gold); }
.border-\[\#e5e7eb\] { border-color: #e5e7eb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.last\:border-0:last-child { border-width: 0; }
.last\:pb-0:last-child { padding-bottom: 0; }

.bg-white { background-color: #fff; }
.bg-gold { background-color: var(--hz-gold); }
.bg-\[\#111\] { background-color: #111; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-\[\#f8f9fa\] { background-color: #f8f9fa; }
.bg-\[\#fdfdfd\] { background-color: #fdfdfd; }
.bg-gray-100 { background-color: #f3f4f6; }

.text-center { text-align: center; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.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-\[10px\] { font-size: 10px; }
.text-\[15px\] { font-size: 15px; }
.text-\[0\.7rem\] { font-size: .7rem; }
.text-\[0\.8rem\] { font-size: .8rem; }
.text-\[0\.9rem\] { font-size: .9rem; }
.text-\[1\.1rem\] { font-size: 1.1rem; }
.font-sans { font-family: Inter, "PingFang SC", "Hiragino Sans GB", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: .025em; }
.tracking-wider { letter-spacing: .05em; }
.tracking-widest { letter-spacing: .1em; }
.tracking-\[0\.2em\] { letter-spacing: .2em; }
.tracking-\[0\.3em\] { letter-spacing: .3em; }
.uppercase { text-transform: uppercase; }

.text-white { color: #fff; }
.text-dark { color: var(--hz-dark); }
.text-gold { color: var(--hz-gold); }
.text-\[\#1a1a1a\] { color: #1a1a1a; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, .05); }
.opacity-60 { opacity: .6; }
.transition-all { transition-property: all; transition-duration: .15s; transition-timing-function: ease; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-duration: .15s; transition-timing-function: ease; }
.transition-opacity { transition-property: opacity; transition-duration: .15s; transition-timing-function: ease; }
.transition-transform { transition-property: transform; transition-duration: .15s; transition-timing-function: ease; }
.duration-300 { transition-duration: .3s; }
.duration-500 { transition-duration: .5s; }
.duration-1000 { transition-duration: 1s; }
.duration-\[2000ms\] { transition-duration: 2s; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, .2, 1); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.hover\:text-gold:hover { color: var(--hz-gold); }
.hover\:border-gold:hover { border-color: var(--hz-gold); }
.hover\:bg-gold:hover { background-color: var(--hz-gold); }
.group-\[\.active\]\:opacity-100.active { opacity: 1; }

.prose { color: inherit; }
.prose p { margin: .75em 0; }
.prose-sm { font-size: .875rem; line-height: 1.7; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:mb-0 { margin-bottom: 0; }
  .sm\:text-right { text-align: right; }
  .sm\:w-1\/3 { width: 33.333333%; }
  .sm\:w-2\/3 { width: 66.666667%; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:static { position: static; }
  .md\:bg-transparent { background-color: transparent; }
  .md\:border-t-0 { border-top-width: 0; }
  .md\:justify-center { justify-content: center; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
  .md\:w-10 { width: 2.5rem; }
  .md\:h-10 { height: 2.5rem; }
  .md\:h-\[72px\] { height: 72px; }
  .md\:max-w-7xl { max-width: 80rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-\[30px\] { gap: 30px; }
  .md\:mt-40 { margin-top: 10rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:p-0 { padding: 0; }
  .md\:p-6 { padding: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:px-0 { padding-left: 0; padding-right: 0; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pt-\[72px\] { padding-top: 72px; }
  .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: .75rem; }
  .md\:text-xs { font-size: .75rem; line-height: 1rem; }
  .md\:text-sm { font-size: .875rem; line-height: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-\[0\.8rem\] { font-size: .8rem; }
  .md\:text-\[1\.1rem\] { font-size: 1.1rem; }
}

@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:gap-24 { gap: 6rem; }
  .lg\:pt-10 { padding-top: 2.5rem; }
  .lg\:w-2\/5 { width: 40%; }
  .lg\:w-3\/5 { width: 60%; }
  .lg\:text-\[40px\] { font-size: 40px; }
}
