@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --radius: 0.375rem;
  --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);

  --background: oklch(0.17 0.035 262);
  --foreground: oklch(0.94 0.012 90);
  --card: oklch(0.22 0.038 262);
  --card-foreground: oklch(0.94 0.012 90);
  --popover: oklch(0.21 0.038 262);
  --popover-foreground: oklch(0.94 0.012 90);
  --primary: oklch(0.78 0.135 82);
  --primary-foreground: oklch(0.17 0.035 262);
  --secondary: oklch(0.27 0.04 262);
  --secondary-foreground: oklch(0.94 0.012 90);
  --muted: oklch(0.25 0.035 262);
  --muted-foreground: oklch(0.72 0.02 85);
  --accent: oklch(0.3 0.045 262);
  --accent-foreground: oklch(0.85 0.13 82);
  --destructive: oklch(0.58 0.2 27);
  --destructive-foreground: oklch(0.97 0.01 90);
  --border: oklch(0.34 0.04 262);
  --input: oklch(0.3 0.04 262);
  --ring: oklch(0.78 0.135 82);
  --gold: oklch(0.82 0.14 82);
  --gold-soft: oklch(0.88 0.08 85);
  --whatsapp: oklch(0.68 0.17 150);
  --sidebar: oklch(0.2 0.038 262);
  --sidebar-foreground: oklch(0.94 0.012 90);
  --sidebar-primary: oklch(0.78 0.135 82);
  --sidebar-primary-foreground: oklch(0.17 0.035 262);
  --sidebar-accent: oklch(0.27 0.04 262);
  --sidebar-accent-foreground: oklch(0.94 0.012 90);
  --sidebar-border: oklch(0.34 0.04 262);
  --sidebar-ring: oklch(0.78 0.135 82);

  --gradient-gold: linear-gradient(100deg, oklch(0.72 0.12 72), oklch(0.9 0.11 92), oklch(0.74 0.13 78));
  --gradient-night: linear-gradient(180deg, oklch(0.17 0.035 262 / 0.35), oklch(0.14 0.03 262 / 0.95));
  --shadow-gold: 0 10px 40px -12px oklch(0.78 0.135 82 / 0.45);
  --shadow-elevated: 0 24px 60px -24px oklch(0.08 0.02 262 / 0.9);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Jost", system-ui, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0.01em;
  font-weight: 600;
  line-height: 1.2;
}

/* Utility Classes */
.container, .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.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-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

.px-4, .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-3, .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.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; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.pt-4, .pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }

.pb-4, .pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-14 { padding-bottom: 3.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.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; }

.p-3 { padding: 0.75rem; }
.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; }

.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-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }

.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.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; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

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

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }
.flex-shrink-0, .shrink-0 { flex-shrink: 0; }

.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333%; }
.w-2\/3 { width: 66.666%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-auto { width: auto; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-52 { width: 13rem; }
.w-60 { width: 15rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }

.min-w-\[40px\] { min-width: 40px; }
.min-w-\[0\] { min-width: 0px; }
.min-w-full { min-width: 100%; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.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-6xl { max-width: 72rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-60 { height: 15rem; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.min-h-\[60px\] { min-height: 60px; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.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; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }

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

.aspect-video { aspect-ratio: 16 / 9; }

.font-sans { font-family: "Jost", system-ui, sans-serif; }
.font-display { font-family: "Cinzel", Georgia, serif; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.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-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.75; }

.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.text-foreground { color: var(--foreground); }
.text-background { color: var(--background); }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-secondary { color: var(--secondary); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-muted { color: var(--muted); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-destructive { color: var(--destructive); }
.text-destructive-foreground { color: var(--destructive-foreground); }
.text-card { color: var(--card); }
.text-card-foreground { color: var(--card-foreground); }
.text-popover { color: var(--popover); }
.text-popover-foreground { color: var(--popover-foreground); }
.text-gold { color: var(--gold); }
.text-whatsapp { color: var(--whatsapp); }
.text-white { color: #ffffff; }

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

.bg-background { background-color: var(--background); }
.bg-foreground { background-color: var(--foreground); }
.bg-primary { background-color: var(--primary); }
.bg-primary-foreground { background-color: var(--primary-foreground); }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary-foreground { background-color: var(--secondary-foreground); }
.bg-muted { background-color: var(--muted); }
.bg-muted-foreground { background-color: var(--muted-foreground); }
.bg-accent { background-color: var(--accent); }
.bg-accent-foreground { background-color: var(--accent-foreground); }
.bg-destructive { background-color: var(--destructive); }
.bg-destructive-foreground { background-color: var(--destructive-foreground); }
.bg-card { background-color: var(--card); }
.bg-card-foreground { background-color: var(--card-foreground); }
.bg-popover { background-color: var(--popover); }
.bg-popover-foreground { background-color: var(--popover-foreground); }
.bg-input { background-color: var(--input); }
.bg-border { background-color: var(--border); }
.bg-ring { background-color: var(--ring); }
.bg-whatsapp { background-color: var(--whatsapp); }

.bg-primary\/10 { background-color: color-mix(in oklab, var(--primary) 10%, transparent); }
.bg-primary\/15 { background-color: color-mix(in oklab, var(--primary) 15%, transparent); }
.bg-primary\/90 { background-color: color-mix(in oklab, var(--primary) 90%, transparent); }

.bg-card\/30 { background-color: color-mix(in oklab, var(--card) 30%, transparent); }
.bg-card\/40 { background-color: color-mix(in oklab, var(--card) 40%, transparent); }
.bg-card\/60 { background-color: color-mix(in oklab, var(--card) 60%, transparent); }
.bg-card\/70 { background-color: color-mix(in oklab, var(--card) 70%, transparent); }

.bg-background\/40 { background-color: color-mix(in oklab, var(--background) 40%, transparent); }
.bg-background\/85 { background-color: color-mix(in oklab, var(--background) 85%, transparent); }

.bg-accent\/40 { background-color: color-mix(in oklab, var(--accent) 40%, transparent); }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l { border-left-width: 1px; border-left-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-y { border-top-width: 1px; border-top-style: solid; border-bottom-width: 1px; border-bottom-style: solid; }
.border-x { border-left-width: 1px; border-left-style: solid; border-right-width: 1px; border-right-style: solid; }

.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }

.border-border { border-color: var(--border); }
.border-primary { border-color: var(--primary); }
.border-input { border-color: var(--input); }
.border-destructive { border-color: var(--destructive); }

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

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

.rounded-none { border-radius: 0px; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded, .rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-3xl { border-radius: var(--radius-3xl); }
.rounded-full { border-radius: 9999px; }

.rounded-t-lg { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.rounded-b-lg { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }

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

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

.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.static { position: static; }

.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-5 { top: 1.25rem; }
.top-full { top: 100%; }

.bottom-4 { bottom: 1rem; }
.bottom-5 { bottom: 1.25rem; }
.bottom-0 { bottom: 0; }

.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-5 { left: 1.25rem; }

.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-5 { right: 1.25rem; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-85 { opacity: 0.85; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }

.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-default { cursor: default; }

.select-none { user-select: none; }
.select-auto { user-select: auto; }

.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-none { backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0); }

.blur-0 { filter: blur(0); }
.blur-sm { filter: blur(4px); }

.transition-none { transition: none; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; 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-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; 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; }

.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

.transform-none { transform: none; }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.-scale-x-100 { transform: scaleX(-1); }

.hover\:bg-primary\/90:hover { background-color: color-mix(in oklab, var(--primary) 90%, transparent); }
.hover\:bg-secondary\/80:hover { background-color: color-mix(in oklab, var(--secondary) 80%, transparent); }
.hover\:bg-destructive\/90:hover { background-color: color-mix(in oklab, var(--destructive) 90%, transparent); }
.hover\:bg-accent:hover { background-color: var(--accent); }
.hover\:bg-primary\/10:hover { background-color: color-mix(in oklab, var(--primary) 10%, transparent); }

.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-accent-foreground:hover { color: var(--accent-foreground); }
.hover\:text-foreground:hover { color: var(--foreground); }
.hover\:underline:hover { text-decoration: underline; }

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

.hover\:scale-105:hover { transform: scale(1.05); }

.focus\:outline-none:focus { outline: none; }
.focus-visible\:outline-none:focus-visible { outline: none; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px var(--ring); }
.focus-visible\:ring-1:focus-visible { box-shadow: 0 0 0 1px var(--ring); }
.focus-visible\:ring-ring:focus-visible { --tw-ring-color: var(--ring); }
.focus-visible\:ring-offset-2:focus-visible { box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring); }
.focus-visible\:ring-offset-background:focus-visible { --tw-ring-offset-color: var(--background); }

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

.aria-checked\:text-primary[aria-checked="true"] { color: var(--primary); }
.aria-current\:text-primary[aria-current="page"] { color: var(--primary); }
.aria-current\:step[aria-current="step"] { font-weight: 600; color: var(--primary); }

.whitespace-nowrap { white-space: nowrap; }
.whitespace-normal { white-space: normal; }
.whitespace-pre-wrap { white-space: pre-wrap; }

.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.overflow-ellipsis { text-overflow: ellipsis; }

.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }
.object-none { object-fit: none; }
.object-scale-down { object-fit: scale-down; }

.object-center { object-position: center; }
.object-top { object-position: top; }
.object-bottom { object-position: bottom; }
.object-left { object-position: left; }
.object-right { object-position: right; }

.text-gradient-gold {
  background-image: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-gold {
  background-image: var(--gradient-gold);
}

.bg-gradient-night {
  background-image: var(--gradient-night);
}

.rule-gold {
  height: 1px;
  background-image: linear-gradient(90deg, transparent, color-mix(in oklab, var(--gold) 70%, transparent), transparent);
}

.isolate { isolation: isolate; }
.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;
}

.hover\:sr-only:hover { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }
.focus\:not-sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: auto;
  margin: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Screen reader text focus styles */
.sr-only.focus\:fixed:focus { position: fixed; }
.sr-only.focus\:left-4:focus { left: 1rem; }
.sr-only.focus\:top-4:focus { top: 1rem; }
.sr-only.focus\:z-\[100\]:focus { z-index: 100; }
.sr-only.focus\:rounded-md:focus { border-radius: var(--radius-md); }
.sr-only.focus\:bg-primary:focus { background-color: var(--primary); }
.sr-only.focus\:px-4:focus { padding-left: 1rem; padding-right: 1rem; }
.sr-only.focus\:py-2:focus { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.sr-only.focus\:text-sm:focus { font-size: 0.875rem; line-height: 1.25rem; }
.sr-only.focus\:font-medium:focus { font-weight: 500; }
.sr-only.focus\:text-primary-foreground:focus { color: var(--primary-foreground); }

/* Forms */
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="url"], input[type="search"], input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"], input[type="week"], textarea, select {
  display: flex;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--input);
  background-color: transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  color: var(--foreground);
  -webkit-appearance: none;
  appearance: none;
}

input[type="file"] {
  border: 0;
  background: transparent;
  padding: 0;
}

input[type="file"]::-webkit-file-upload-button {
  border: 0;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0 1rem 0 0;
  margin-right: 1rem;
  cursor: pointer;
}

textarea {
  min-height: 60px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  resize: vertical;
}

input::placeholder, textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 1;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--ring);
  border-color: var(--ring);
}

input:disabled, textarea:disabled, select:disabled, button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (min-width: 768px) {
  input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="url"], input[type="search"], input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"], input[type="week"], textarea, select {
    font-size: 0.875rem;
  }
}

/* Checkbox */
.checkbox-root {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 0.125rem;
  border: 1px solid var(--primary);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  cursor: pointer;
  transition: background-color 0.15s ease;
  user-select: none;
  flex-shrink: 0;
  background-color: transparent;
  vertical-align: middle;
}

.checkbox-root:checked {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.checkbox-root:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.checkbox-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: currentColor;
}

.checkbox-indicator svg {
  width: 1rem;
  height: 1rem;
}

/* Labels */
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  border: none;
  text-decoration: none;
  user-select: none;
  line-height: 1.5;
}

.btn svg {
  pointer-events: none;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-default {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.btn-default:hover {
  background-color: color-mix(in oklab, var(--primary) 90%, transparent);
}

.btn-outline {
  border: 1px solid var(--input);
  background-color: var(--background);
  color: var(--foreground);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-secondary:hover {
  background-color: color-mix(in oklab, var(--secondary) 80%, transparent);
}

.btn-destructive {
  background-color: var(--destructive);
  color: var(--destructive-foreground);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.btn-destructive:hover {
  background-color: color-mix(in oklab, var(--destructive) 90%, transparent);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-link {
  color: var(--primary);
  background-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0;
  height: auto;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-sm {
  height: 2rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
}

.btn-default {
  height: 2.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.btn-lg {
  height: 2.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-radius: var(--radius-md);
}

.btn-icon {
  height: 2.25rem;
  width: 2.25rem;
  padding: 0;
}

/* Focus ring for buttons */
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px var(--ring);
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Header */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background-color: color-mix(in oklab, var(--background) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.site-header.header-scrolled {
  box-shadow: 0 8px 32px -16px color-mix(in oklab, var(--primary) 40%, transparent),
              0 2px 8px -2px rgb(0 0 0 / 0.3);
  border-bottom-color: color-mix(in oklab, var(--border) 85%, transparent);
}

.site-header nav {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
}

.site-header-nav {
  flex-wrap: nowrap;
}

@media (max-width: 1023px) {
  .site-header-nav {
    flex-wrap: nowrap;
  }
}

.desktop-nav {
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 auto;
  justify-content: flex-end;
  order: 2;
  width: auto;
  border-top: none;
  padding-top: 0;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 0 1 auto;
  min-width: 0;
}

.desktop-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.desktop-nav a {
  white-space: nowrap;
}

.desktop-nav-links a {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  position: relative;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.desktop-nav-links a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 1rem;
  width: 1px;
  background-color: color-mix(in oklab, var(--border) 60%, transparent);
}

.desktop-nav-actions .ml-3 {
  margin-left: 0;
}

.profile-choice:has(input:checked) {
  border-color: var(--primary);
  background-color: color-mix(in oklab, var(--primary) 10%, transparent);
}

.profile-swatch {
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, white 30%, transparent);
}

.profile-swatch-midnight-gold { background: linear-gradient(135deg, #101827 50%, #d6a84f 50%); }
.profile-swatch-forest-copper { background: linear-gradient(135deg, #173b35 50%, #c4774f 50%); }
.profile-swatch-ivory-ink { background: linear-gradient(135deg, #f3ead7 50%, #20242a 50%); }

.profile-preview {
  min-height: 15rem;
  background-color: #101827;
  background-position: center;
  background-size: cover;
  color: #f8f4e9;
}

.profile-preview[data-background="temple"] { background-image: url('/assets/images/hero-temple.jpg'); }
.profile-preview[data-background="lodge"] { background-image: url('/assets/images/lodge-officers.jpg'); }
.profile-preview[data-background="assembly"] { background-image: url('/assets/images/brotherhood-assembly.jpg'); }
.profile-preview-overlay { min-height: 15rem; background: linear-gradient(90deg, rgb(8 13 24 / 0.9), rgb(8 13 24 / 0.48)); }
.profile-theme-forest-copper .profile-preview-overlay { background: linear-gradient(90deg, rgb(18 55 48 / 0.9), rgb(18 55 48 / 0.42)); }
.profile-theme-ivory-ink { color: #20242a; }
.profile-theme-ivory-ink .profile-preview-overlay { background: linear-gradient(90deg, rgb(243 234 215 / 0.94), rgb(243 234 215 / 0.58)); }
.profile-layout-split .profile-preview-details { max-width: 18rem; border-left: 2px solid currentColor; padding-left: 1rem; }
.profile-layout-minimal .profile-preview-details { display: none; }
.profile-font-cinzel .profile-preview-name { font-family: "Cinzel", Georgia, serif; }
.profile-font-jost .profile-preview-name { font-family: "Jost", Arial, sans-serif; }
.profile-font-serif .profile-preview-name { font-family: Georgia, serif; }

.mobile-actions {
  margin-left: auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-md);
}

.logo-link img {
  width: 2.25rem;
  height: 2.25rem;
}

.logo-text {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-actions,
  .mobile-menu {
    display: none;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dropdown-trigger:hover {
  color: var(--primary);
}

.dropdown-trigger svg {
  width: 0.875rem;
  height: 0.875rem;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 13rem;
  margin-top: 0.125rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background-color: var(--popover);
  padding: 0.25rem;
  box-shadow: var(--shadow-elevated);
  z-index: 50;
  display: none;
}

.dropdown-menu.open {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: var(--popover-foreground);
  transition: background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.motion-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--radius-md);
  color: var(--muted-foreground);
  transition: color 0.15s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.motion-toggle:hover,
.motion-toggle[aria-checked="true"] {
  color: var(--primary);
}

.motion-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 0.5rem;
  color: var(--primary);
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  cursor: pointer;
  height: 2.25rem;
  width: 2.25rem;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.mobile-menu-btn:hover {
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
  background-color: color-mix(in oklab, var(--primary) 8%, transparent);
}

.mobile-menu-btn svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2.25;
}

.mobile-menu {
  display: block;
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  padding: 1rem 1.25rem;
  background-color: color-mix(in oklab, var(--background) 97%, transparent);
}

.mobile-menu > div:first-child a {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 35%, transparent);
}

.mobile-menu > div:first-child a:last-child {
  border-bottom: none;
}

.mobile-menu > div:last-child {
  margin-top: 0.5rem;
}

.mobile-link {
  display: block;
  padding: 0.5rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
  text-decoration: none;
}

.mobile-link:hover,
.mobile-btn:hover {
  color: var(--primary);
}

.mobile-btn {
  display: block;
  width: 100%;
  padding: 0.625rem 0.5rem;
  text-align: left;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.25rem;
}

.mobile-link.primary {
  color: var(--primary);
}

/* Mobile controls visibility */
.mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Footer */
.site-footer {
  margin-top: 6rem;
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background-color: color-mix(in oklab, var(--card) 40%, transparent);
}

.footer-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 1.25rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: 2rem;
  height: 2rem;
}

.footer-logo span {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
}

.footer-desc {
  margin-top: 1rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.footer-heading {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.footer-links li + li {
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.footer-contact li + li {
  margin-top: 0.75rem;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--muted-foreground);
  transition: color 0.15s ease;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Floating contact */
.floating-left {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.floating-right {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: transform 0.15s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.float-btn:hover {
  transform: scale(1.05);
}

.float-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.float-btn-lg svg {
  width: 1.5rem;
  height: 1.5rem;
}

.float-btn-md {
  height: 3rem;
  width: 3rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--primary);
  box-shadow: var(--shadow-elevated);
}

.float-btn-gold {
  height: 3.5rem;
  width: 3.5rem;
  background-image: var(--gradient-gold);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-gold);
}

.float-btn-whatsapp {
  height: 3.5rem;
  width: 3.5rem;
  background-color: var(--whatsapp);
  color: var(--background);
  box-shadow: var(--shadow-elevated);
}

.float-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--ring), 0 0 0 4px var(--background), var(--shadow-elevated);
}

.float-btn-gold:focus-visible {
  box-shadow: 0 0 0 2px var(--ring), 0 0 0 4px var(--background), var(--shadow-gold);
}

/* Page hero */
.page-hero {
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background-color: color-mix(in oklab, var(--card) 30%, transparent);
}

.page-hero-inner {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 1.25rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--primary);
}

.page-hero-title {
  margin-top: 1rem;
  font-size: 2.25rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3rem;
  }
}

.page-hero-rule {
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 10rem;
}

.page-hero-subtitle {
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* Home hero */
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-hero img.bg-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.home-hero .overlay {
  position: absolute;
  inset: 0;
  background-image: var(--gradient-night);
}

.home-hero-inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 64rem;
  padding: 8rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .home-hero-inner {
    padding: 11rem 1.25rem;
  }
}

.home-hero h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .home-hero h1 {
    font-size: 3.75rem;
  }
}

.home-hero p.desc {
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
}

.home-hero .cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Pillars section */
.section-title {
  text-align: center;
}

.section-title .eyebrow {
  letter-spacing: 0.35em;
}

.section-title h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .section-title h2 {
    font-size: 2.25rem;
  }
}

.section-rule {
  margin-top: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 10rem;
}

.pillars-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pillar-card {
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 1.75rem;
  transition: border-color 0.2s ease;
}

.pillar-card:hover {
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
}

.pillar-card svg {
  height: 1.75rem;
  width: 1.75rem;
  color: var(--primary);
}

.pillar-card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}

.pillar-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.pillar-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
}

.pillar-card-link:hover {
  border-color: color-mix(in oklab, var(--primary) 85%, transparent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-elevated);
  transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.pillar-more {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pillar-card-link:hover .pillar-more {
  opacity: 1;
  transform: translateX(0);
}

.split-img-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
}

.split-img-link:hover .split-img {
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.section-sub {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  max-width: 38rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* About / Purpose split section */
.split-section {
  border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background-color: color-mix(in oklab, var(--card) 30%, transparent);
}

.split-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding: 6rem 1.25rem;
}

@media (min-width: 768px) {
  .split-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.split-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  box-shadow: var(--shadow-elevated);
}

.split-content h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .split-content h2 {
    font-size: 2.25rem;
  }
}

.split-content .section-rule {
  margin-left: 0;
  width: 8rem;
}

.split-content p {
  margin-top: 1.5rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.split-content .btn {
  margin-top: 2rem;
}

/* CTA section */
.cta-section {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 6rem 1.25rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.25rem;
  }
}

.cta-section p {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.cta-row {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Values grid */
.values-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.value-card {
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 1.75rem;
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
}

.value-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* Gallery grid */
.gallery-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gallery-figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
}

.gallery-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gallery-figure figcaption {
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Steps grid */
.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.step-card {
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 1.75rem;
}

.step-num {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.875rem;
}

.step-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.step-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* Apply / status panel */
.panel {
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 2rem;
}

.panel h2 {
  font-size: 1.5rem;
}

.panel .section-rule {
  margin-top: 1.25rem;
  margin-left: 0;
  width: 100%;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-error {
  font-size: 0.75rem;
  color: var(--destructive);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-field label {
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.75;
  color: var(--muted-foreground);
  cursor: pointer;
}

.form-actions {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stepper li {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
}

.step-circle {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
}

.step-circle.active,
.step-circle.done {
  border-color: var(--primary);
  background-color: color-mix(in oklab, var(--primary) 15%, transparent);
  color: var(--primary);
}

.step-circle.inactive {
  color: var(--muted-foreground);
}

.step-label {
  font-size: 0.875rem;
}

.step-label.active {
  color: var(--foreground);
}

.step-label.inactive {
  color: var(--muted-foreground);
}

@media (max-width: 639px) {
  .step-label {
    display: none;
  }
}

.step-divider {
  height: 1px;
  flex: 1;
  background-color: var(--border);
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid color-mix(in oklab, var(--primary) 50%, transparent);
  background-color: color-mix(in oklab, var(--primary) 10%, transparent);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
}

/* Filter buttons */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.filter-btn {
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  background-color: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
}

.filter-btn:hover {
  color: var(--primary);
}

.filter-btn.active {
  border-color: var(--primary);
  background-color: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
}

/* Blog grid */
.blog-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  transition: border-color 0.2s ease;
}

.blog-card:hover {
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.75rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.blog-meta .date {
  color: var(--muted-foreground);
}

.blog-card h2 {
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.375;
}

.blog-card h2 a:hover {
  color: var(--primary);
}

.blog-excerpt {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.blog-read-time {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Contact grid */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 1.5rem;
  transition: border-color 0.2s ease;
  text-decoration: none;
}

.contact-method:hover {
  border-color: color-mix(in oklab, var(--primary) 60%, transparent);
}

.contact-method svg {
  margin-top: 0.25rem;
  height: 1.25rem;
  width: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-method-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
}

.contact-method-value {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Perks grid */
.perks-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .perks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.perk-card {
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  padding: 1.75rem;
}

.perk-card.locked {
  opacity: 0.7;
}

.perk-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.perk-card svg.icon {
  height: 1.5rem;
  width: 1.5rem;
  color: var(--primary);
}

.perk-card svg.lock {
  height: 1rem;
  width: 1rem;
  color: var(--muted-foreground);
}

.perk-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
}

.perk-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.perk-card .request-link {
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
}

.perk-card .request-link:hover {
  text-decoration: underline;
}

.perk-card .unlock-text {
  margin-top: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-foreground);
}

/* Review notes box */
.review-notes {
  margin-top: 1rem;
  border-radius: 0.25rem;
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  background-color: color-mix(in oklab, var(--background) 40%, transparent);
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.review-notes strong {
  color: var(--foreground);
}

/* Auth tabs */
.auth-tabs {
  display: inline-flex;
  background-color: var(--muted);
  border-radius: var(--radius-md);
  padding: 0.25rem;
  margin-bottom: 2rem;
}

.auth-tab {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  background-color: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.15s ease;
}

.auth-tab.active {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* 404 Page */
.notfound-wrap {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  padding: 1rem;
}

.notfound-inner {
  max-width: 28rem;
  text-align: center;
}

.notfound-code {
  font-size: 4.5rem;
  font-weight: bold;
}

.notfound-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.notfound-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.notfound-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: var(--primary);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: background-color 0.15s ease;
  text-decoration: none;
}

.notfound-link:hover {
  background-color: color-mix(in oklab, var(--primary) 90%, transparent);
}

/* Blog post detail */
.blog-detail {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 1.25rem;
}

.back-link {
  font-size: 0.875rem;
  color: var(--primary);
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.blog-detail h1 {
  margin-top: 1.5rem;
  font-size: 2.25rem;
  line-height: 1.25;
}

.blog-detail-meta {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.blog-detail-rule {
  margin-top: 2rem;
  width: 100%;
}

.blog-detail-cover {
  margin-top: 2rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.blog-detail-body {
  margin-top: 2.5rem;
}

.blog-detail-body > * + * {
  margin-top: 1.5rem;
}

.blog-detail-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

/* Success icon */
.success-icon {
  margin-left: auto;
  margin-right: auto;
  height: 2.5rem;
  width: 2.5rem;
  color: var(--primary);
}

.panel-centered {
  text-align: center;
}

.panel-centered p.lead {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.panel-centered .btn {
  margin-top: 2rem;
}

/* Icon styles inline to avoid needing a separate icon system */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Toast messages */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background-color: var(--popover);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-elevated);
  min-width: 280px;
  animation: slideIn 0.2s ease;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.toast-desc {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.toast-success .toast-title { color: var(--primary); }
.toast-error .toast-title { color: var(--destructive); }

/* Grid layouts used throughout */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:py-44 { padding-top: 11rem; padding-bottom: 11rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}

@media (min-width: 1024px) {
  .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\:grid-cols-\[1fr_1\.2fr\] { grid-template-columns: 1fr 1.2fr; }
}

.grid-items-center {
  align-items: center;
}

/* Loading state */
.loading {
  text-align: center;
  color: var(--muted-foreground);
  padding: 4rem 0;
}

/* Reduced motion */
html.reduce-motion *,
html.reduce-motion *::before,
html.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  html:not(.motion-ok) *,
  html:not(.motion-ok) *::before,
  html:not(.motion-ok) *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* File upload */
input[type="file"]::file-selector-button {
  margin-right: 1rem;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Scroll area */
.scroll-area {
  overflow: auto;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-weight: 500;
  background-color: color-mix(in oklab, var(--muted) 50%, transparent);
}

/* Accent colors for form elements */
::selection {
  background-color: color-mix(in oklab, var(--primary) 30%, transparent);
  color: var(--foreground);
}
