*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: var(--color-border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; tab-size: 4; font-family: var(--font-sans); }
body { margin: 0; background-color: var(--color-background); color: var(--color-foreground); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; line-height: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }
a { color: inherit; text-decoration: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; font-size: 100%; line-height: inherit; letter-spacing: inherit; color: inherit; background: none; border: none; padding: 0; }
input, textarea { font-family: inherit; font-size: 100%; line-height: inherit; color: inherit; }
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

:root {
  --radius: 0.75rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.2 0.04 260);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.2 0.04 260);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.2 0.04 260);
  --primary: oklch(0.28 0.09 265);
  --primary-foreground: oklch(0.99 0 0);
  --primary-glow: oklch(0.42 0.14 265);
  --secondary: oklch(0.97 0.01 260);
  --secondary-foreground: oklch(0.28 0.09 265);
  --gold: oklch(0.78 0.14 85);
  --gold-foreground: oklch(0.22 0.05 260);
  --muted: oklch(0.97 0.005 260);
  --muted-foreground: oklch(0.5 0.02 260);
  --accent: oklch(0.96 0.03 85);
  --accent-foreground: oklch(0.28 0.09 265);
  --destructive: oklch(0.58 0.24 27);
  --destructive-foreground: oklch(0.99 0 0);
  --border: oklch(0.92 0.01 260);
  --input: oklch(0.92 0.01 260);
  --ring: oklch(0.42 0.14 265);
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --shadow-elegant: 0 20px 60px -20px color-mix(in oklab, var(--primary) 30%, transparent);
  --shadow-gold: 0 10px 40px -15px color-mix(in oklab, var(--gold) 50%, transparent);
}

.text-gradient-gold {
  background-image: linear-gradient(90deg, var(--gold), oklch(0.88 0.12 90));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.bg-hero-gradient {
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
}

.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-gold { box-shadow: var(--shadow-gold); }

.container { max-width: 1280px; margin: 0 auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.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; }
.grid { display: grid; }
.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-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }
.w-full { width: 100%; }
.h-auto { height: auto; }
.max-h-\[300px\] { max-height: 300px; }
.object-cover { object-fit: cover; }
@media (min-width: 640px) { .sm\:max-h-\[400px\] { max-height: 400px; } }
@media (min-width: 1024px) { .lg\:max-h-none { max-height: none; } }
.w-fit { width: fit-content; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.min-h-screen { min-height: 100vh; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.-inset-4 { inset: -1rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.-right-20 { right: -5rem; }
.-top-20 { top: -5rem; }
.-top-3 { top: -0.75rem; }
.left-1\/2 { left: 50%; }

.overflow-hidden { overflow: hidden; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.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-16 { margin-top: 4rem; }
.mb-4 { margin-bottom: 1rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.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-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-6 { padding-top: 1.5rem; }
.pb-3 { padding-bottom: 0.75rem; }

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

.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-border { border-color: var(--border); }
.border-input { border-color: var(--input); }
.border-gold { border-color: var(--gold); }
.border-primary-foreground\/10 { border-color: color-mix(in oklab, var(--primary-foreground) 10%, transparent); }
.border-primary-foreground\/30 { border-color: color-mix(in oklab, var(--primary-foreground) 30%, transparent); }
.border-border\/60 { border-color: color-mix(in oklab, var(--border) 60%, transparent); }
.border-primary-foreground\/10 { border-color: color-mix(in oklab, var(--primary-foreground) 10%, transparent); }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-gold { background-color: var(--gold); }
.bg-secondary { background-color: var(--secondary); }
.bg-background\/80 { background-color: color-mix(in oklab, var(--background) 80%, transparent); }
.bg-gold\/15 { background-color: color-mix(in oklab, var(--gold) 15%, transparent); }
.bg-gold\/20 { background-color: color-mix(in oklab, var(--gold) 20%, transparent); }
.bg-gold\/30 { background-color: color-mix(in oklab, var(--gold) 30%, transparent); }
.bg-primary-foreground\/5 { background-color: color-mix(in oklab, var(--primary-foreground) 5%, transparent); }
.bg-primary-foreground\/10 { background-color: color-mix(in oklab, var(--primary-foreground) 10%, transparent); }
.bg-secondary\/50 { background-color: color-mix(in oklab, var(--secondary) 50%, transparent); }

.text-primary { color: var(--primary); }
.text-foreground { color: var(--foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-gold { color: var(--gold); }
.text-gold-foreground { color: var(--gold-foreground); }
.text-primary-foreground\/60 { color: color-mix(in oklab, var(--primary-foreground) 60%, transparent); }
.text-primary-foreground\/70 { color: color-mix(in oklab, var(--primary-foreground) 70%, transparent); }
.text-primary-foreground\/80 { color: color-mix(in oklab, var(--primary-foreground) 80%, transparent); }
.text-primary-foreground\/85 { color: color-mix(in oklab, var(--primary-foreground) 85%, transparent); }
.text-foreground\/80 { color: color-mix(in oklab, var(--foreground) 80%, transparent); }

.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-display { font-family: var(--font-display); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-tight { line-height: 1.25; }

.text-center { text-align: center; }
.whitespace-nowrap { white-space: nowrap; }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:scale-\[1\.03\]:hover { transform: scale(1.03); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:bg-secondary:hover { background-color: var(--secondary); }
.hover\:bg-accent:hover { background-color: var(--accent); }
.hover\:bg-primary\/90:hover { background-color: color-mix(in oklab, var(--primary) 90%, transparent); }
.hover\:bg-primary-foreground\/10:hover { background-color: color-mix(in oklab, var(--primary-foreground) 10%, transparent); }
.hover\:bg-primary-foreground\/20:hover { background-color: color-mix(in oklab, var(--primary-foreground) 20%, transparent); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-primary-glow:hover { color: var(--primary-glow); }
.hover\:shadow-elegant:hover { box-shadow: var(--shadow-elegant); }
.group:hover .group-hover\:text-primary-glow { color: var(--primary-glow); }

.focus\:border-primary:focus { border-color: var(--primary); }
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--ring); }
.focus\:ring-ring\/30:focus { box-shadow: 0 0 0 2px color-mix(in oklab, var(--ring) 30%, transparent); }

.-translate-x-1\/2 { transform: translateX(-50%); }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }

.border-border\/60 { border-color: color-mix(in oklab, var(--border) 60%, transparent); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

.open\:shadow-elegant[open] { box-shadow: var(--shadow-elegant); }

#hero-slideshow { min-height: 400px; }
@media (min-width: 1024px) { #hero-slideshow { min-height: 500px; } }

.hero-slide { display: none; }
.hero-slide.active { display: block; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--gold) 20%, transparent);
  color: var(--gold); border: 1px solid color-mix(in oklab, var(--gold) 40%, transparent);
  backdrop-filter: blur(4px); transition: all 0.2s; cursor: pointer;
}
.hero-arrow:hover { background: var(--gold); color: var(--gold-foreground); }
.hero-arrow-left { left: 1rem; }
.hero-arrow-right { right: 1rem; }
@media (min-width: 768px) { .hero-arrow { width: 48px; height: 48px; } .hero-arrow-left { left: 2rem; } .hero-arrow-right { right: 2rem; } }

.hero-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: color-mix(in oklab, var(--primary-foreground) 30%, transparent);
  border: none; cursor: pointer; transition: all 0.3s; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }
.hero-dot:hover { background: var(--gold); }

details summary { cursor: pointer; }
details summary::-webkit-details-marker { display: none; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:p-16 { padding: 4rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .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\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:scale-\[1\.03\] { transform: scale(1.03); }
}

@media (min-width: 1024px) {
  .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; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
}
