/* ====== TAILWIND UTILITY REPLACEMENT ======
   Pre-compiled static CSS replacing the cdn.tailwindcss.com JIT compiler.
   Generated from actual class usage across all templates.
   ====== */

/* ── Layout ── */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.relative { position: relative; }
.absolute { position: absolute; }

/* ── Flex ── */
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.self-start { align-self: flex-start; }

/* ── Grid ── */
.lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.lg\:col-span-8 { grid-column: span 8 / span 8; }
.lg\:col-span-4 { grid-column: span 4 / span 4; }

/* ── Gap ── */
.gap-1\.5 { gap: 0.375rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* ── Spacing: Margin ── */
.mt-0\.5 { margin-top: 0.125rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Spacing: Padding ── */
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* ── Spacing: Space-y ── */
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* ── Sizing ── */
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-full { width: 100%; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-container { max-width: 1280px; }

/* ── Typography ── */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.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; }
.font-medium { font-weight: 500; }
.font-display { font-family: 'Fraunces', Georgia, serif; }
.italic { font-style: italic; }
.leading-relaxed { line-height: 1.625; }

/* ── Colors (custom theme tokens) ── */
.text-ivory { color: #F6F1E6; }
.text-gold { color: #C8A14B; }
.text-gold-soft { color: #E8D49A; }
.text-gold-deep { color: #9C7A2D; }
.text-navy-deep { color: #081A2E; }
.text-slate { color: #465A75; }
.text-ivory\/60 { color: rgba(246,241,230,0.6); }
.text-ivory\/70 { color: rgba(246,241,230,0.7); }
.text-ivory\/80 { color: rgba(246,241,230,0.8); }
.text-ivory\/90 { color: rgba(246,241,230,0.9); }

/* ── Borders ── */
.rounded-sm { border-radius: 0.125rem; }
.border { border-width: 1px; }
.border-gold\/40 { border-color: rgba(200,161,75,0.4); }
.border-ivory\/30 { border-color: rgba(246,241,230,0.3); }
.border-navy\/20 { border-color: rgba(14,42,71,0.2); }

/* ── Responsive: md (768px) ── */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ── Responsive: sm (640px) ── */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:inline-flex { display: inline-flex; }
}

/* ── Responsive: lg (1024px) ── */
@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
}
