@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/Lato-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/Lato-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/Playfair-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/Playfair-700.ttf') format('truetype');
}

:root {
  --background: #ffffff;
  --foreground: #1e293b;
  --primary: #16335c;
  --primary-foreground: #ffffff;
  --accent: #c9a227;
  --accent-foreground: #ffffff;
  --secondary: #f1f5f9;
  --card: #ffffff;
  --border: #e2e8f0;
  --muted-foreground: #64748b;
  --ring: #c9a227;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
}

.font-serif { font-family: 'Playfair Display', Georgia, serif; }
.font-sans { font-family: 'Lato', system-ui, sans-serif; }

/* Layout */
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-none { max-width: none; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-8 { padding: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.pt-8 { padding-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.gap-2 { gap: 0.5rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.grid { display: grid; }
.min-w-0 { min-width: 0; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.w-72 { width: 18rem; }
.h-72 { height: 18rem; }
.w-80 { width: 20rem; }
.h-80 { height: 20rem; }
.object-cover { object-fit: cover; }
.rounded-md { border-radius: 0.375rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; border-color: var(--border); }
.border-t { border-top-width: 1px; border-style: solid; border-color: rgba(255,255,255,0.2); }

/* Colors */
.bg-background { background: var(--background); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.bg-card { background: var(--card); }
.bg-secondary { background: var(--secondary); }
.bg-secondary\/30 { background: rgba(241,245,249,0.3); }
.bg-accent\/10 { background: rgba(201,162,39,0.1); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-grad-from), var(--tw-grad-to)); }
.from-primary\/90 { --tw-grad-from: rgba(22,51,92,0.9); }
.to-primary { --tw-grad-to: var(--primary); }
.opacity-95 { opacity: 0.95; }
.text-foreground { color: var(--foreground); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-accent { color: var(--accent); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary-foreground\/90 { color: rgba(255,255,255,0.9); }
.text-primary-foreground\/80 { color: rgba(255,255,255,0.8); }
.text-primary-foreground\/60 { color: rgba(255,255,255,0.6); }
.border-accent { border-color: var(--accent); }
.border-input { border-color: var(--border); }

/* Typography */
.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-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; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.placeholder\:text-muted-foreground::placeholder { color: var(--muted-foreground); }

/* Buttons / inputs */
button, .btn, a.btn {
  cursor: pointer;
  text-decoration: none;
}
.shadow-xs { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-sm { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.transition-all { transition: all 0.2s ease; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.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-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.hover\:bg-accent:hover { background: var(--accent); }
.hover\:bg-accent\/90:hover { background: rgba(201,162,39,0.9); }
.hover\:text-accent:hover { color: var(--accent); }
.hover\:text-accent-foreground:hover { color: var(--accent-foreground); }
.hover\:underline:hover { text-decoration: underline; }
.bg-transparent { background: transparent; }

input, textarea {
  font-family: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: var(--border);
  background: transparent;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  outline: none;
}
input:focus-visible, textarea:focus-visible {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.4);
}
label { font-size: 0.875rem; font-weight: 500; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:h-32 { height: 8rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:h-40 { height: 10rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}
