/*
 * Project Tailwind extensions.
 *
 * WindPress should provide the standard Tailwind utilities. This file only
 * maps Zanda's custom design-token utilities to the CSS variables emitted by
 * the theme layout settings.
 */

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-leading: normal;
  --tw-border-style: solid;
  --tw-duration: 150ms;
  --tw-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-gradient-position: ;
  --tw-gradient-from: transparent;
  --tw-gradient-via: transparent;
  --tw-gradient-to: transparent;
  --tw-gradient-stops: var(--tw-gradient-position), var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: hsl(var(--ring) / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

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

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body, Inter, system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  appearance: button;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading, "Cormorant Garamond", Georgia, serif);
}

.paragraph a {
  text-decoration: underline;
}

.paragraph a:hover {
  color: hsl(var(--muted-foreground));
}

.text-balance {
  text-wrap: balance;
}

.dark {
  --background: 30 10% 10%;
  --foreground: 40 20% 95%;
  --card: 30 10% 12%;
  --card-foreground: 40 20% 95%;
  --popover: 30 10% 12%;
  --popover-foreground: 40 20% 95%;
  --primary: 85 20% 50%;
  --primary-foreground: 30 10% 10%;
  --secondary: 30 10% 18%;
  --secondary-foreground: 40 20% 90%;
  --muted: 30 10% 20%;
  --muted-foreground: 40 15% 65%;
  --accent: 85 15% 25%;
  --accent-foreground: 85 20% 85%;
  --border: 30 10% 20%;
  --input: 30 10% 20%;
  --ring: 85 20% 50%;
  --sidebar-background: 240 5.9% 10%;
  --sidebar-foreground: 240 4.8% 95.9%;
  --sidebar-primary: 224.3 76.3% 48%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 240 3.7% 15.9%;
  --sidebar-accent-foreground: 240 4.8% 95.9%;
  --sidebar-border: 240 3.7% 15.9%;
  --sidebar-ring: 217.2 91.2% 59.8%;
}

.container,
:is(#a, *) .container.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
  max-width: none;
}

@media (min-width: 1400px) {
  .container,
  :is(#a, *) .container.container {
    max-width: 1400px;
  }
}

.font-serif {
  font-family: var(--font-heading, "Cormorant Garamond", Georgia, serif);
}

.font-sans {
  font-family: var(--font-body, Inter, system-ui, sans-serif);
}

.rounded-lg {
  border-radius: var(--radius);
}

.rounded-md {
  border-radius: calc(var(--radius) - 2px);
}

.rounded-sm {
  border-radius: calc(var(--radius) - 4px);
}

.bg-background {
  background-color: hsl(var(--background));
}

.bg-background\/80 {
  background-color: hsl(var(--background) / 0.8);
}

.bg-background\/90 {
  background-color: hsl(var(--background) / 0.9);
}

.bg-background\/95 {
  background-color: hsl(var(--background) / 0.95);
}

.bg-foreground {
  background-color: hsl(var(--foreground));
}

.bg-card-foreground {
  background-color: hsl(var(--card-foreground));
}

.bg-card {
  background-color: hsl(var(--card));
}

.bg-popover {
  background-color: hsl(var(--popover));
}

.bg-popover-foreground {
  background-color: hsl(var(--popover-foreground));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-primary-foreground {
  background-color: hsl(var(--primary-foreground));
}

.bg-secondary {
  background-color: hsl(var(--secondary));
}

.bg-secondary-foreground {
  background-color: hsl(var(--secondary-foreground));
}

.bg-muted {
  background-color: hsl(var(--muted));
}

.bg-muted-foreground {
  background-color: hsl(var(--muted-foreground));
}

.bg-accent {
  background-color: hsl(var(--accent));
}

.bg-accent-foreground {
  background-color: hsl(var(--accent-foreground));
}

.bg-destructive {
  background-color: hsl(var(--destructive));
}

.bg-destructive-foreground {
  background-color: hsl(var(--destructive-foreground));
}

.bg-border {
  background-color: hsl(var(--border));
}

.bg-sage {
  background-color: hsl(var(--sage));
}

.bg-sage-light {
  background-color: hsl(var(--sage-light));
}

.bg-sage-dark {
  background-color: hsl(var(--sage-dark));
}

.bg-cream {
  background-color: hsl(var(--cream));
}

.bg-cream-dark {
  background-color: hsl(var(--cream-dark));
}

.bg-warm-gray {
  background-color: hsl(var(--warm-gray));
}

.bg-warm-brown {
  background-color: hsl(var(--warm-brown));
}

.bg-sidebar {
  background-color: hsl(var(--sidebar-background));
}

.bg-sidebar-foreground {
  background-color: hsl(var(--sidebar-foreground));
}

.bg-sidebar-primary {
  background-color: hsl(var(--sidebar-primary));
}

.bg-sidebar-primary-foreground {
  background-color: hsl(var(--sidebar-primary-foreground));
}

.bg-sidebar-accent {
  background-color: hsl(var(--sidebar-accent));
}

.bg-sidebar-accent-foreground {
  background-color: hsl(var(--sidebar-accent-foreground));
}

.bg-sidebar-border {
  background-color: hsl(var(--sidebar-border));
}

.text-background {
  color: hsl(var(--background));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-card-foreground {
  color: hsl(var(--card-foreground));
}

.text-popover-foreground {
  color: hsl(var(--popover-foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-primary-foreground {
  color: hsl(var(--primary-foreground));
}

.text-secondary-foreground {
  color: hsl(var(--secondary-foreground));
}

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

.text-accent-foreground {
  color: hsl(var(--accent-foreground));
}

.text-destructive {
  color: hsl(var(--destructive));
}

.text-destructive-foreground {
  color: hsl(var(--destructive-foreground));
}

.text-sage {
  color: hsl(var(--sage));
}

.text-sage-light {
  color: hsl(var(--sage-light));
}

.text-sage-dark {
  color: hsl(var(--sage-dark));
}

.text-warm-gray {
  color: hsl(var(--warm-gray));
}

.text-warm-brown {
  color: hsl(var(--warm-brown));
}

.text-sidebar {
  color: hsl(var(--sidebar-background));
}

.text-sidebar-foreground {
  color: hsl(var(--sidebar-foreground));
}

.text-sidebar-primary {
  color: hsl(var(--sidebar-primary));
}

.text-sidebar-primary-foreground {
  color: hsl(var(--sidebar-primary-foreground));
}

.text-sidebar-accent {
  color: hsl(var(--sidebar-accent));
}

.text-sidebar-accent-foreground {
  color: hsl(var(--sidebar-accent-foreground));
}

.text-sidebar-border {
  color: hsl(var(--sidebar-border));
}

.border-border {
  border-color: hsl(var(--border));
}

.border-border\/50 {
  border-color: hsl(var(--border) / 0.5);
}

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

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

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

.border-foreground {
  border-color: hsl(var(--foreground));
}

.border-primary-foreground {
  border-color: hsl(var(--primary-foreground));
}

.border-secondary {
  border-color: hsl(var(--secondary));
}

.border-secondary-foreground {
  border-color: hsl(var(--secondary-foreground));
}

.border-muted {
  border-color: hsl(var(--muted));
}

.border-muted-foreground {
  border-color: hsl(var(--muted-foreground));
}

.border-accent {
  border-color: hsl(var(--accent));
}

.border-accent-foreground {
  border-color: hsl(var(--accent-foreground));
}

.border-card {
  border-color: hsl(var(--card));
}

.border-card-foreground {
  border-color: hsl(var(--card-foreground));
}

.border-popover {
  border-color: hsl(var(--popover));
}

.border-popover-foreground {
  border-color: hsl(var(--popover-foreground));
}

.border-sage {
  border-color: hsl(var(--sage));
}

.border-sage-light {
  border-color: hsl(var(--sage-light));
}

.border-sage-dark {
  border-color: hsl(var(--sage-dark));
}

.border-sidebar-border {
  border-color: hsl(var(--sidebar-border));
}

.ring-ring {
  --tw-ring-color: hsl(var(--ring));
}

.ring-sidebar-ring {
  --tw-ring-color: hsl(var(--sidebar-ring));
}

.hover\:bg-sage-dark:hover {
  background-color: hsl(var(--sage-dark));
}

.hover\:bg-accent:hover {
  background-color: hsl(var(--accent));
}

.hover\:bg-sidebar-accent:hover {
  background-color: hsl(var(--sidebar-accent));
}

.hover\:text-primary:hover {
  color: hsl(var(--primary));
}

.hover\:text-sidebar-accent-foreground:hover {
  color: hsl(var(--sidebar-accent-foreground));
}

.focus\:border-primary:focus {
  border-color: hsl(var(--primary));
}

.focus\:ring-ring:focus {
  --tw-ring-color: hsl(var(--ring));
}

.from-background\/60 {
  --tw-gradient-from: color-mix(in oklab, hsl(var(--background)) 60%, transparent);
  --tw-gradient-to: color-mix(in oklab, hsl(var(--background)) 0%, transparent);
  --tw-gradient-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
}

.from-background\/90 {
  --tw-gradient-from: color-mix(in oklab, hsl(var(--background)) 90%, transparent);
  --tw-gradient-to: color-mix(in oklab, hsl(var(--background)) 0%, transparent);
  --tw-gradient-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
}

.via-background\/40 {
  --tw-gradient-via: color-mix(in oklab, hsl(var(--background)) 40%, transparent);
  --tw-gradient-to: color-mix(in oklab, hsl(var(--background)) 0%, transparent);
  --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-via-stops);
}

.via-background\/70 {
  --tw-gradient-via: color-mix(in oklab, hsl(var(--background)) 70%, transparent);
  --tw-gradient-to: color-mix(in oklab, hsl(var(--background)) 0%, transparent);
  --tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-via-stops);
}

.to-background\/20 {
  --tw-gradient-to: color-mix(in oklab, hsl(var(--background)) 20%, transparent);
}

.to-background\/40 {
  --tw-gradient-to: color-mix(in oklab, hsl(var(--background)) 40%, transparent);
}

@supports not (color: color-mix(in oklab, red 50%, transparent)) {
  .from-background\/60 {
    --tw-gradient-from: hsl(var(--background) / 0.6);
    --tw-gradient-to: hsl(var(--background) / 0);
  }

  .from-background\/90 {
    --tw-gradient-from: hsl(var(--background) / 0.9);
    --tw-gradient-to: hsl(var(--background) / 0);
  }

  .via-background\/40 {
    --tw-gradient-via: hsl(var(--background) / 0.4);
    --tw-gradient-to: hsl(var(--background) / 0);
  }

  .via-background\/70 {
    --tw-gradient-via: hsl(var(--background) / 0.7);
    --tw-gradient-to: hsl(var(--background) / 0);
  }

  .to-background\/20 {
    --tw-gradient-to: hsl(var(--background) / 0.2);
  }

  .to-background\/40 {
    --tw-gradient-to: hsl(var(--background) / 0.4);
  }
}

@keyframes zanda-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zanda-fade-in-slow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zanda-accordion-down {
  from {
    height: 0;
  }

  to {
    height: var(--radix-accordion-content-height);
  }
}

@keyframes zanda-accordion-up {
  from {
    height: var(--radix-accordion-content-height);
  }

  to {
    height: 0;
  }
}

.animate-fade-in,
.animate-fade-in-up {
  animation: zanda-fade-in 0.6s ease-out forwards;
}

.animate-fade-in-slow {
  animation: zanda-fade-in-slow 1s ease-out forwards;
}

.animate-accordion-down {
  animation: zanda-accordion-down 0.2s ease-out;
}

.animate-accordion-up {
  animation: zanda-accordion-up 0.2s ease-out;
}

.prose.prose-neutral {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.prose.prose-neutral :where(p, ul, ol) {
  margin-block: 1rem;
}

.prose.prose-neutral :where(h2, h3, h4) {
  color: hsl(var(--foreground));
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--line-heading);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose.prose-neutral a {
  color: hsl(var(--primary));
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
