@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --radius: 0.625rem;
  --background: oklch(0.985 0.005 95);
  --foreground: oklch(0.18 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.18 0 0);
  --primary: #026202;
  --primary-foreground: oklch(0.985 0.005 95);
  --secondary: oklch(0.955 0.01 95);
  --secondary-foreground: oklch(0.18 0 0);
  --muted: oklch(0.955 0.01 95);
  --muted-foreground: oklch(0.45 0.01 95);
  --accent: oklch(0.94 0.04 90);
  --accent-foreground: oklch(0.25 0.05 145);
  --gold: oklch(0.76 0.14 80);
  --gold-foreground: oklch(0.18 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.984 0.003 247.858);
  --border: oklch(0.9 0.01 90);
  --input: oklch(0.9 0.01 90);
  --ring: #026202;
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --sidebar: oklch(0.984 0.003 247.858);
  --sidebar-foreground: oklch(0.129 0.042 264.695);
  --sidebar-primary: oklch(0.208 0.042 265.755);
  --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
  --sidebar-accent: oklch(0.968 0.007 247.896);
  --sidebar-accent-foreground: oklch(0.208 0.042 265.755);
  --sidebar-border: oklch(0.929 0.013 255.508);
  --sidebar-ring: oklch(0.704 0.04 256.788);

  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);
  --radius-4xl: calc(var(--radius) + 16px);
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Playfair Display", ui-serif, Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }

* { border-color: var(--border); }

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  min-height: 100vh;
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

.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; }
.justify-start { justify-content: flex-start; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-y-1 { row-gap: 0.25rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-y-2 { row-gap: 0.5rem; }

.min-h-dvh { min-height: 100dvh; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.w-fit { width: fit-content; }
.h-full { height: 100%; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-1\.5 { height: 0.375rem; }
.h-3\.5 { height: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-1\.5 { width: 0.375rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-\[300px\] { width: 300px; }
.w-\[360px\] { width: 360px; }
.w-\[80px\] { width: 80px; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-3xl { max-width: 48rem; }
.aspect-\[16\/10\] { aspect-ratio: 16/10; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }

.absolute { position: absolute; }
.relative { position: relative; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-2 { bottom: 0.5rem; }
.left-0 { left: 0; }
.left-8 { left: 2rem; }
.right-6 { right: 1.5rem; }
.-top-4 { top: -1rem; }
.-right-0 { right: 0; }
.-translate-y-1 { transform: translateY(-0.25rem); }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded { border-radius: 0.25rem; }
.overflow-hidden { overflow: hidden; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-input { border-color: var(--input); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-white\/70 { border-color: rgba(255,255,255,0.7); }
.border-background\/15 { border-color: rgba(0,0,0,0.15); }
.border-background\/20 { border-color: rgba(0,0,0,0.2); }
.border-primary { border-color: var(--primary); }
.border-foreground\/20 { border-color: var(--foreground); border-opacity: 0.2; }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-primary\/10 { background-color: var(--primary); opacity: 0.1; }
.bg-foreground { background-color: var(--foreground); }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary\/40 { background-color: var(--secondary); opacity: 0.4; }
.bg-muted { background-color: var(--muted); }
.bg-accent { background-color: var(--accent); }
.bg-white { background-color: white; }
.bg-white\/5 { background-color: rgba(255,255,255,0.05); }
.bg-white\/95 { background-color: rgba(255,255,255,0.95); }
.bg-background\/95 { background-color: var(--background); opacity: 0.95; }
.bg-background\/5 { background-color: var(--background); opacity: 0.05; }
.bg-background\/10 { background-color: var(--background); opacity: 0.1; }
.bg-background\/80 { background-color: var(--background); opacity: 0.8; }
.bg-background\/95 { background-color: var(--background); opacity: 0.95; }
.bg-black\/55 { background-color: rgba(0,0,0,0.55); }
.bg-black\/40 { background-color: rgba(0,0,0,0.4); }
.bg-black\/70 { background-color: rgba(0,0,0,0.7); }

.text-foreground { color: var(--foreground); }
.text-foreground\/80 { color: var(--foreground); opacity: 0.8; }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-background { color: var(--background); }
.text-background\/60 { color: var(--background); opacity: 0.6; }
.text-background\/70 { color: var(--background); opacity: 0.7; }
.text-background\/75 { color: var(--background); opacity: 0.75; }
.text-background\/80 { color: var(--background); opacity: 0.8; }
.text-muted-foreground { color: var(--muted-foreground); }
.text-white { color: white; }
.text-white\/85 { color: rgba(255,255,255,0.85); }
.text-\[var\(--color-gold\)\] { color: var(--gold); }
.text-\[10px\] { font-size: 0.625rem; }
.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-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-7xl { font-size: 4.5rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-serif { font-family: var(--font-serif); }
.uppercase { text-transform: uppercase; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-left: center; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-2 { padding: 0.5rem; }
.p-1\.5 { padding: 0.375rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.pt-8 { padding-top: 2rem; }
.pb-6 { padding-bottom: 1.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-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; }
.mt-14 { margin-top: 3.5rem; }
.mt-24 { margin-top: 6rem; }
.mb-0 { margin-bottom: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.-mr-2 { margin-right: -0.5rem; }

.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-none { box-shadow: none; }

.backdrop-blur { backdrop-filter: blur(8px); }

.cursor-pointer { cursor: pointer; }

.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }

.transition-all { transition: all 150ms ease; }
.transition-colors { transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease; }
.duration-500 { transition-duration: 500ms; }

.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:border-primary { border-color: var(--primary); }
.group:hover .group-hover\:shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.group:hover .group-hover\:shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.group:hover .group-hover\:bg-primary { background-color: var(--primary); }
.group:hover .group-hover\:text-primary { color: var(--primary); }
.group:hover .group-hover\:text-primary-foreground { color: var(--primary-foreground); }

.hover\:bg-primary\/90:hover { background-color: var(--primary); opacity: 0.9; }
.hover\:bg-primary:hover { background-color: var(--primary); }
.hover\:bg-accent:hover { background-color: var(--accent); }
.hover\:bg-white:hover { background-color: white; }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-\[var\(--color-gold\)\]:hover { color: var(--gold); }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:border-\[var\(--color-gold\)\]:hover { border-color: var(--gold); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.hover\:text-white:hover { color: white; }

.placeholder\:text-muted-foreground::placeholder { color: var(--muted-foreground); }

.focus-visible\:outline-none:focus-visible { outline: none; }
.focus-visible\:ring-1:focus-visible { box-shadow: 0 0 0 1px var(--ring); }
.focus-visible\:ring-ring:focus-visible { box-shadow: 0 0 0 1px var(--ring); }

.disabled\:pointer-events-none:disabled { pointer-events: none; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }
.disabled\:opacity-50:disabled { opacity: 0.5; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.ring { box-shadow: 0 0 0 1px var(--ring); }

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:w-\[360px\] { width: 360px; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:p-12 { padding: 3rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:h-20 { height: 5rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:items-center { align-items: center; }
  .xl\:hidden { display: none; }
  .xl\:flex { display: flex; }
}

@media (min-width: 1280px) {
  .xl\:flex { display: flex; }
  .xl\:hidden { display: none; }
}

@media (max-width: 639px) {
  .max-w-3xl { max-width: 48rem; }
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }