*,
*::before,
*::after {
    box-sizing: border-box;
    border-color: var(--color-border);
}
* {
    margin: 0;
    padding: 0;
}
:root {
    --radius: 0.75rem;
    --background: oklch(0.99 0.005 250);
    --foreground: oklch(0.18 0.06 270);
    --card: oklch(1 0 0);
    --card-foreground: oklch(0.18 0.06 270);
    --popover: oklch(1 0 0);
    --popover-foreground: oklch(0.18 0.06 270);
    --primary: oklch(0.24 0.09 275);
    --primary-foreground: oklch(0.98 0.01 90);
    --brand: oklch(0.55 0.18 145);
    --brand-foreground: oklch(0.99 0 0);
    --gold: oklch(0.84 0.16 88);
    --gold-foreground: oklch(0.22 0.08 275);
    --secondary: oklch(0.96 0.01 260);
    --secondary-foreground: oklch(0.22 0.08 275);
    --muted: oklch(0.96 0.01 260);
    --muted-foreground: oklch(0.45 0.03 265);
    --accent: oklch(0.84 0.16 88);
    --accent-foreground: oklch(0.22 0.08 275);
    --destructive: oklch(0.6 0.22 27);
    --destructive-foreground: oklch(0.99 0 0);
    --border: oklch(0.9 0.015 260);
    --input: oklch(0.9 0.015 260);
    --ring: oklch(0.55 0.18 145);
    --gradient-hero: linear-gradient(
        135deg,
        oklch(0.18 0.08 275) 0%,
        oklch(0.28 0.12 280) 60%,
        oklch(0.4 0.14 285) 100%
    );
    --gradient-gold: linear-gradient(135deg, oklch(0.88 0.16 88), oklch(0.78 0.17 75));
    --gradient-brand: linear-gradient(135deg, oklch(0.55 0.18 145), oklch(0.42 0.14 155));
    --shadow-elegant: 0 20px 50px -20px oklch(0.24 0.09 275 / 0.35);
    --shadow-gold: 0 10px 30px -10px oklch(0.84 0.16 88 / 0.5);
    --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
    --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}
html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.6;
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
}

/* Layout */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.max-w-7xl {
    max-width: 80rem;
}
.max-w-5xl {
    max-width: 64rem;
}
.max-w-4xl {
    max-width: 56rem;
}
.max-w-3xl {
    max-width: 48rem;
}
.max-w-2xl {
    max-width: 42rem;
}
.max-w-md {
    max-width: 28rem;
}
.max-w-lg {
    max-width: 32rem;
}
.w-full {
    width: 100%;
}
.h-full {
    height: 100%;
}
.min-h-screen {
    min-height: 100vh;
}
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.grid {
    display: grid;
}
.hidden {
    display: none;
}
.flex-col {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.items-center {
    align-items: center;
}
.items-start {
    align-items: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.gap-1 {
    gap: 0.25rem;
}
.gap-2 {
    gap: 0.5rem;
}
.gap-2\.5 {
    gap: 0.625rem;
}
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-5 {
    gap: 1.25rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-7 {
    gap: 1.75rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-10 {
    gap: 2.5rem;
}
.gap-12 {
    gap: 3rem;
}
.gap-14 {
    gap: 3.5rem;
}
.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;
}
.space-y-6 > * + * {
    margin-top: 1.5rem;
}

/* Padding */
.p-1 {
    padding: 0.25rem;
}
.p-2 {
    padding: 0.5rem;
}
.p-3 {
    padding: 0.75rem;
}
.p-3\.5 {
    padding: 0.875rem;
}
.p-4 {
    padding: 1rem;
}
.p-5 {
    padding: 1.25rem;
}
.p-6 {
    padding: 1.5rem;
}
.p-7 {
    padding: 1.75rem;
}
.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-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-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.pt-6 {
    padding-top: 1.5rem;
}
.pt-8 {
    padding-top: 2rem;
}
.pb-24 {
    padding-bottom: 6rem;
}

/* Margins */
.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-7 {
    margin-top: 1.75rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mt-14 {
    margin-top: 3.5rem;
}

/* 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-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.1;
}
.text-6xl {
    font-size: 3.75rem;
    line-height: 1.05;
}
.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}
.font-normal {
    font-weight: 400;
}
.font-semibold {
    font-weight: 600;
}
.font-bold {
    font-weight: 700;
}
.tracking-tight {
    letter-spacing: -0.02em;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.tracking-widest {
    letter-spacing: 0.15em;
}
.uppercase {
    text-transform: uppercase;
}
.leading-none {
    line-height: 1;
}
.leading-tight {
    line-height: 1.25;
}
.leading-relaxed {
    line-height: 1.625;
}
.text-center {
    text-align: center;
}
.text-transparent {
    color: transparent;
}
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}
.whitespace-nowrap {
    white-space: nowrap;
}

/* Colors */
.text-primary {
    color: var(--primary);
}
.text-primary-foreground {
    color: var(--primary-foreground);
}
.text-primary-foreground\/60 {
    color: oklch(0.98 0.01 90 / 0.6);
}
.text-primary-foreground\/70 {
    color: oklch(0.98 0.01 90 / 0.7);
}
.text-primary-foreground\/80 {
    color: oklch(0.98 0.01 90 / 0.8);
}
.text-foreground {
    color: var(--foreground);
}
.text-foreground\/80 {
    color: oklch(0.18 0.06 270 / 0.8);
}
.text-muted-foreground {
    color: var(--muted-foreground);
}
.text-brand {
    color: var(--brand);
}
.text-gold {
    color: var(--gold);
}
.text-gold-foreground {
    color: var(--gold-foreground);
}
.text-brand-foreground {
    color: var(--brand-foreground);
}

/* Backgrounds */
.bg-background {
    background-color: var(--background);
}
.bg-background\/80 {
    background-color: oklch(0.99 0.005 250 / 0.8);
}
.bg-primary {
    background-color: var(--primary);
}
.bg-card {
    background-color: var(--card);
}
.bg-secondary {
    background-color: var(--secondary);
}
.bg-secondary\/40 {
    background-color: oklch(0.96 0.01 260 / 0.4);
}
.bg-brand\/10 {
    background-color: oklch(0.55 0.18 145 / 0.1);
}
.bg-gold\/10 {
    background-color: oklch(0.84 0.16 88 / 0.1);
}
.bg-white\/5 {
    background-color: rgb(255 255 255 / 0.05);
}
.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}

/* Borders */
.border {
    border-width: 1px;
    border-style: solid;
}
.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}
.border-border {
    border-color: var(--border);
}
.border-border\/60 {
    border-color: oklch(0.9 0.015 260 / 0.6);
}
.border-input {
    border-color: var(--input);
}
.border-gold\/40 {
    border-color: oklch(0.84 0.16 88 / 0.4);
}
.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);
}
.border-white\/20 {
    border-color: rgb(255 255 255 / 0.2);
}
.rounded-sm {
    border-radius: calc(var(--radius) - 4px);
}
.rounded-md {
    border-radius: calc(var(--radius) - 2px);
}
.rounded-lg {
    border-radius: var(--radius);
}
.rounded-xl {
    border-radius: calc(var(--radius) + 4px);
}
.rounded-2xl {
    border-radius: calc(var(--radius) + 8px);
}
.rounded-3xl {
    border-radius: calc(var(--radius) + 12px);
}
.rounded-full {
    border-radius: 9999px;
}

/* Effects */
.shadow-sm {
    box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
}
.shadow-md {
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}
.object-cover {
    object-fit: cover;
}
.object-contain {
    object-fit: contain;
}
.overflow-hidden {
    overflow: hidden;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.top-0 {
    top: 0;
}
.right-6 {
    right: 1.5rem;
}
.top-6 {
    top: 1.5rem;
}
.-z-10 {
    z-index: -10;
}
.z-50 {
    z-index: 50;
}
.isolate {
    isolation: isolate;
}
.sticky {
    position: sticky;
}
.opacity-90 {
    opacity: 0.9;
}
.opacity-95 {
    opacity: 0.95;
}

/* Transitions */
.transition {
    transition: all 0.2s ease;
}
.duration-700 {
    transition-duration: 0.7s;
}

/* Backdrop */
.backdrop-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.backdrop-blur-xl {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Aspect */
.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

/* Flex grow */
.flex-1 {
    flex: 1;
}
.flex-none {
    flex: none;
}

/* Grid columns */
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Order */
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}

/* SVG icons */
.icon {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    vertical-align: middle;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.icon-sm {
    width: 1em;
    height: 1em;
}
.icon-lg {
    width: 1.5em;
    height: 1.5em;
}

/* Hover states */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}
.hover\:scale-105:hover {
    transform: scale(1.05);
}
.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}
.hover\:border-brand\/40:hover {
    border-color: oklch(0.55 0.18 145 / 0.4);
}
.hover\:bg-secondary:hover {
    background-color: var(--secondary);
}
.hover\:bg-white\/10:hover {
    background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-primary\/90:hover {
    background-color: oklch(0.24 0.09 275 / 0.9);
}
.hover\:text-brand:hover {
    color: var(--brand);
}
.hover\:text-gold:hover {
    color: var(--gold);
}
.hover\:text-primary:hover {
    color: var(--primary);
}
.hover\:opacity-90:hover {
    opacity: 0.9;
}
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Focus */
.outline-none {
    outline: none;
}
.focus\:border-brand:focus {
    border-color: var(--brand);
}
.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--ring);
}
.focus\:ring-brand\/20:focus {
    box-shadow: 0 0 0 2px oklch(0.55 0.18 145 / 0.2);
}

/* Specific components */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Button */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background-image: var(--gradient-gold);
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-foreground);
    box-shadow: var(--shadow-gold);
    transition: transform 0.2s ease;
}
.btn-gold:hover {
    transform: scale(1.05);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgb(255 255 255 / 0.2);
    background-color: rgb(255 255 255 / 0.05);
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-foreground);
    backdrop-filter: blur(12px);
    transition: background-color 0.2s ease;
}
.btn-outline:hover {
    background-color: rgb(255 255 255 / 0.1);
}

.font-display {
    font-family: var(--font-display);
}

/* Gold dot */
.gold-dot {
    display: inline-block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background-color: var(--gold);
}

/* Gradients */
.bg-\[image\:var\(--gradient-hero\)\] {
    background-image: var(--gradient-hero);
}
.bg-\[image\:var\(--gradient-gold\)\] {
    background-image: var(--gradient-gold);
}
.bg-\[image\:var\(--gradient-brand\)\] {
    background-image: var(--gradient-brand);
}

/* Arbitrary sizes */
.h-2 {
    height: 0.5rem;
}
.h-10 {
    height: 2.5rem;
}
.h-11 {
    height: 2.75rem;
}
.h-12 {
    height: 3rem;
}
.h-14 {
    height: 3.5rem;
}
.h-18 {
    height: 4.5rem;
}
.w-2 {
    width: 0.5rem;
}
.w-10 {
    width: 2.5rem;
}
.w-11 {
    width: 2.75rem;
}
.w-12 {
    width: 3rem;
}
.w-14 {
    width: 3.5rem;
}
.text-\[10px\] {
    font-size: 10px;
}
.text-\[11px\] {
    font-size: 11px;
}
.tracking-\[0\.18em\] {
    letter-spacing: 0.18em;
}
.tracking-\[0\.2em\] {
    letter-spacing: 0.2em;
}
.tracking-\[0\.25em\] {
    letter-spacing: 0.25em;
}

/* Hero gradient overlay */
.bg-gradient-hero {
    background-image: var(--gradient-hero);
}

/* Media queries */
@media (min-width: 640px) {
    .sm\:col-span-2 {
        grid-column: span 2;
    }
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .sm\:block {
        display: block;
    }
    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1.1;
    }
    .sm\:text-6xl {
        font-size: 3.75rem;
        line-height: 1.05;
    }
    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .sm\:p-14 {
        padding: 3.5rem;
    }
}
@media (min-width: 768px) {
    .md\:col-span-2 {
        grid-column: span 2;
    }
    .md\:flex {
        display: flex;
    }
    .md\:inline-flex {
        display: inline-flex;
    }
    .md\:hidden {
        display: none;
    }
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .lg\:col-span-2 {
        grid-column: span 2;
    }
    .lg\:col-span-3 {
        grid-column: span 3;
    }
    .lg\:col-span-5 {
        grid-column: span 5;
    }
    .lg\:col-span-8 {
        grid-column: span 8;
    }
    .lg\:grid-cols-12 {
        grid-template-columns: repeat(12, 1fr);
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .lg\:order-1 {
        order: 1;
    }
    .lg\:order-2 {
        order: 2;
    }
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .lg\:py-36 {
        padding-top: 9rem;
        padding-bottom: 9rem;
    }
    .lg\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
}

/* Extra utilities */
.h-4 {
    height: 1rem;
}
.w-4 {
    width: 1rem;
}
.leading-\[1\.05\] {
    line-height: 1.05;
}
.mt-0\.5 {
    margin-top: 0.125rem;
}
.h-6 {
    height: 1.5rem;
}
.w-6 {
    width: 1.5rem;
}
.group {
}
.font-medium {
    font-weight: 500;
}
.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
}
.p-3\.5 {
    padding: 0.875rem;
}
.-bottom-6 {
    bottom: -1.5rem;
}
.-right-6 {
    right: -1.5rem;
}
.text-secondary {
    color: var(--secondary);
}
.max-w-xl {
    max-width: 36rem;
}
.bg-gold {
    background-color: var(--gold);
}
.hover\:shadow-\[var\(--shadow-elegant\)\]:hover {
    box-shadow: var(--shadow-elegant);
}
.shadow-\[var\(--shadow-elegant\)\] {
    box-shadow: var(--shadow-elegant);
}
.shadow-\[var\(--shadow-gold\)\] {
    box-shadow: var(--shadow-gold);
}
.text-gold-foreground\/80 {
    color: oklch(0.22 0.08 275 / 0.8);
}

/* Hero slideshow */
.hero-slideshow {
    min-height: 90vh;
}
.slideshow-track .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}
.slideshow-track .slide.active {
    opacity: 1;
}
.slideshow-track .slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}
.slide-dots .dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    border: 1.5px solid oklch(0.98 0.01 90 / 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.slide-dots .dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 8px oklch(0.84 0.16 88 / 0.5);
}
.slide-dots .dot:hover {
    border-color: var(--gold);
}
