@charset "UTF-8";

:root {
  --color-midnight-indigo: #0B1026;
  --color-deep-emerald: #0F3D3E;
  --color-raspberry-red: #E63946;
  --color-amber-glow: #FFB347;
  --color-soft-ivory: #F5F0E6;
  --color-muted-ivory: #C9C4B8;
  --color-deep-raspberry: #B32D3A;
  --color-dark-amber: #7A4A00;

  --color-bg: var(--color-midnight-indigo);
  --color-bg-alt: var(--color-deep-emerald);
  --color-text: var(--color-soft-ivory);
  --color-text-muted: var(--color-muted-ivory);
  --color-accent: var(--color-raspberry-red);
  --color-accent-alt: var(--color-amber-glow);
  --color-accent-text: var(--color-deep-raspberry);
  --color-accent-alt-text: var(--color-dark-amber);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-subtle: rgba(255, 255, 255, 0.05);
  --color-focus: var(--color-amber-glow);
  --color-shadow: rgba(0, 0, 0, 0.4);

  --font-heading: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --text-display-size: clamp(3rem, 8vw, 6rem);
  --text-h1-size: clamp(2.5rem, 6vw, 4rem);
  --text-h2-size: clamp(2rem, 4vw, 3rem);
  --text-h3-size: clamp(1.5rem, 3vw, 2rem);
  --text-body-size: 1rem;
  --text-small-size: 0.875rem;

  --text-display-weight: 700;
  --text-h1-weight: 700;
  --text-h2-weight: 700;
  --text-h3-weight: 600;
  --text-body-weight: 400;
  --text-small-weight: 400;

  --text-display-line-height: 1.0;
  --text-h1-line-height: 1.1;
  --text-h2-line-height: 1.2;
  --text-h3-line-height: 1.3;
  --text-body-line-height: 1.6;
  --text-small-line-height: 1.5;

  --text-heading-tracking: -0.02em;
  --text-label-tracking: 0.15em;
  --text-button-tracking: 0.1em;

  --space-4xs: 4px;
  --space-3xs: 8px;
  --space-2xs: 16px;
  --space-xs: 24px;
  --space-sm: 32px;
  --space-md: 48px;
  --space-lg: 64px;
  --space-xl: 96px;
  --space-2xl: 128px;

  --container-max: 1200px;
  --container-gutter-desktop: 24px;
  --container-gutter-mobile: 16px;
  --section-padding-desktop: 96px;
  --section-padding-mobile: 64px;
  --card-padding: 24px;

  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-pill: 999px;

  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-card-raised: 0 12px 32px rgba(0, 0, 0, 0.5);
  --shadow-amber-glow: 0 0 16px rgba(255, 179, 71, 0.35);
  --shadow-raspberry-glow: 0 0 16px rgba(230, 57, 70, 0.35);

  --border-thin: 1px solid var(--color-border);
  --border-subtle: 1px solid var(--color-border-subtle);
  --outline-focus: 2px solid var(--color-focus);

  --transition-color: 200ms ease-in-out;
  --transition-transform: 300ms ease-in-out;
  --transition-all: 200ms ease-in-out;

  --gradient-surface-raised: linear-gradient(135deg, var(--color-deep-emerald) 0%, var(--color-midnight-indigo) 100%);
  --gradient-hero-overlay: linear-gradient(180deg, rgba(11, 16, 38, 0.7) 0%, rgba(11, 16, 38, 0.4) 50%, rgba(11, 16, 38, 0.85) 100%);
  --gradient-duotone: linear-gradient(135deg, rgba(11, 16, 38, 0.75) 0%, rgba(255, 179, 71, 0.25) 100%);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  font-weight: var(--text-body-weight);
  line-height: var(--text-body-line-height);
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

hr {
  border: none;
  border-top: var(--border-thin);
  margin-block: var(--space-md);
}

address {
  font-style: normal;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--text-h1-weight);
  letter-spacing: var(--text-heading-tracking);
  color: var(--color-text);
  line-height: var(--text-h1-line-height);
}

h1 {
  font-size: var(--text-h1-size);
  line-height: var(--text-h1-line-height);
  font-weight: var(--text-h1-weight);
  margin-block-end: var(--space-xs);
}

h2 {
  font-size: var(--text-h2-size);
  line-height: var(--text-h2-line-height);
  font-weight: var(--text-h2-weight);
  margin-block-end: var(--space-2xs);
}

h3 {
  font-size: var(--text-h3-size);
  line-height: var(--text-h3-line-height);
  font-weight: var(--text-h3-weight);
  margin-block-end: var(--space-3xs);
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: var(--text-heading-tracking);
  margin-block-end: var(--space-3xs);
}

h5 {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: var(--text-heading-tracking);
  margin-block-end: var(--space-3xs);
}

h6 {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: var(--text-heading-tracking);
  margin-block-end: var(--space-3xs);
}

p {
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  font-weight: var(--text-body-weight);
  color: var(--color-text);
  margin-block-end: var(--space-2xs);
}

p:last-child {
  margin-block-end: 0;
}

small {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  font-weight: var(--text-small-weight);
  color: var(--color-text-muted);
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

mark {
  background-color: var(--color-amber-glow);
  color: var(--color-dark-amber);
  padding: 0.125em 0.25em;
  border-radius: var(--radius-small);
}

code,
kbd,
samp,
pre {
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
  font-size: 0.9em;
}

pre {
  background-color: rgba(255, 255, 255, 0.05);
  border: var(--border-thin);
  border-radius: var(--radius-medium);
  padding: var(--space-2xs);
  overflow-x: auto;
  margin-block-end: var(--space-2xs);
}

pre:last-child {
  margin-block-end: 0;
}

blockquote {
  border-left: 3px solid var(--color-amber-glow);
  padding-inline-start: var(--space-2xs);
  margin-block-end: var(--space-2xs);
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

blockquote:last-child {
  margin-block-end: 0;
}

ul,
ol {
  margin-block-end: var(--space-2xs);
  padding-inline-start: var(--space-xs);
}

ul:last-child,
ol:last-child {
  margin-block-end: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-block-end: var(--space-4xs);
}

li:last-child {
  margin-block-end: 0;
}

dl {
  margin-block-end: var(--space-2xs);
}

dl:last-child {
  margin-block-end: 0;
}

dt {
  font-weight: 700;
  margin-block-end: var(--space-4xs);
}

dd {
  margin-inline-start: var(--space-2xs);
  margin-block-end: var(--space-3xs);
  color: var(--color-text-muted);
}

dd:last-child {
  margin-block-end: 0;
}

figure {
  margin-block-end: var(--space-2xs);
}

figure:last-child {
  margin-block-end: 0;
}

figcaption {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  color: var(--color-text-muted);
  margin-block-start: var(--space-3xs);
}

a {
  color: var(--color-amber-glow);
  transition: color var(--transition-color);
}

a:hover {
  color: var(--color-soft-ivory);
}

a:focus-visible {
  outline: var(--outline-focus);
  outline-offset: 2px;
  border-radius: var(--radius-small);
}

::selection {
  background-color: var(--color-amber-glow);
  color: var(--color-dark-amber);
}

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

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-midnight-indigo);
}

::-webkit-scrollbar-thumb {
  background: var(--color-deep-emerald);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-amber-glow);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter-desktop);
}

.container--wide {
  max-width: 1400px;
}

.container--full {
  max-width: none;
  padding-inline: 0;
}

@media (max-width: 768px) {
  .container {
    padding-inline: var(--container-gutter-mobile);
  }

  .container--wide {
    padding-inline: var(--container-gutter-mobile);
  }
}

.section {
  padding-block: var(--section-padding-desktop);
}

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

.section--tight {
  padding-block: var(--space-md);
}

.section--loose {
  padding-block: var(--space-2xl);
}

@media (max-width: 768px) {
  .section {
    padding-block: var(--section-padding-mobile);
  }

  .section--tight {
    padding-block: var(--space-sm);
  }

  .section--loose {
    padding-block: var(--space-xl);
  }
}

.surface {
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-medium);
  border: var(--border-thin);
  padding: var(--card-padding);
}

.surface--raised {
  background: var(--gradient-surface-raised);
  box-shadow: var(--shadow-card);
}

.surface--flat {
  background-color: var(--color-midnight-indigo);
  border: var(--border-subtle);
}

.surface--large {
  border-radius: var(--radius-large);
}

.surface--small {
  border-radius: var(--radius-small);
}

.surface--pill {
  border-radius: var(--radius-pill);
}

.surface--interactive {
  transition: box-shadow var(--transition-transform), border-color var(--transition-color), transform var(--transition-transform);
}

.surface--interactive:hover {
  box-shadow: var(--shadow-card-raised);
  border-color: var(--color-amber-glow);
  transform: scale(1.02);
}

.surface > :last-child {
  margin-block-end: 0;
}

.card {
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-medium);
  border: var(--border-thin);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-transform), border-color var(--transition-color), transform var(--transition-transform);
}

.card:hover {
  box-shadow: var(--shadow-card-raised);
  border-color: var(--color-amber-glow);
  transform: scale(1.02);
}

.card > :last-child {
  margin-block-end: 0;
}

.card--flat {
  box-shadow: none;
}

.card--flat:hover {
  box-shadow: var(--shadow-card);
}

.card--large {
  border-radius: var(--radius-large);
}

.card--small {
  border-radius: var(--radius-small);
}

.card--pill {
  border-radius: var(--radius-pill);
}

.card--interactive {
  cursor: pointer;
}

.card--interactive:hover {
  border-color: var(--color-amber-glow);
  box-shadow: var(--shadow-card-raised);
  transform: scale(1.02);
}

.card__image {
  width: 100%;
  border-radius: var(--radius-medium);
  margin-block-end: var(--space-2xs);
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border: var(--border-subtle);
}

.card__image--4-3 {
  aspect-ratio: 4 / 3;
}

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

.card__image--square {
  aspect-ratio: 1 / 1;
}

.card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
}

.card__content > :last-child {
  margin-block-end: 0;
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  line-height: var(--text-h3-line-height);
  letter-spacing: var(--text-heading-tracking);
  color: var(--color-text);
  margin-block-end: 0;
}

.card__text {
  color: var(--color-text-muted);
  margin-block-end: 0;
}

.card__meta {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  color: var(--color-text-muted);
  margin-block-end: 0;
}

.card__action {
  margin-block-start: var(--space-3xs);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xs);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: var(--text-button-tracking);
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-small);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-color), color var(--transition-color), border-color var(--transition-color), box-shadow var(--transition-color), transform var(--transition-transform);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus-visible {
  outline: var(--outline-focus);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--color-raspberry-red);
  color: var(--color-soft-ivory);
  border-color: var(--color-raspberry-red);
}

.btn--primary:hover {
  background-color: var(--color-deep-raspberry);
  border-color: var(--color-deep-raspberry);
  color: var(--color-soft-ivory);
  box-shadow: var(--shadow-raspberry-glow);
}

.btn--secondary {
  background-color: var(--color-amber-glow);
  color: var(--color-dark-amber);
  border-color: var(--color-amber-glow);
}

.btn--secondary:hover {
  background-color: #E6A03D;
  border-color: #E6A03D;
  color: var(--color-dark-amber);
  box-shadow: var(--shadow-amber-glow);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-soft-ivory);
  border-color: var(--color-border);
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--color-amber-glow);
  color: var(--color-amber-glow);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-amber-glow);
  border-color: transparent;
}

.btn--ghost:hover {
  background-color: rgba(255, 179, 71, 0.1);
  color: var(--color-amber-glow);
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn--large {
  padding: 20px 40px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.btn--pill {
  border-radius: var(--radius-pill);
}

.btn--icon {
  padding: 12px;
  border-radius: var(--radius-pill);
}

.btn--icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--text-label-tracking);
  text-transform: uppercase;
  color: var(--color-amber-glow);
  padding-inline-start: var(--space-2xs);
  border-inline-start: 2px solid var(--color-amber-glow);
  margin-block-end: var(--space-2xs);
}

.label--raspberry {
  color: var(--color-raspberry-red);
  border-inline-start-color: var(--color-raspberry-red);
}

.label--ivory {
  color: var(--color-soft-ivory);
  border-inline-start-color: var(--color-soft-ivory);
}

.label--no-border {
  border-inline-start: none;
  padding-inline-start: 0;
}

.label:last-child {
  margin-block-end: 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4xs);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--text-label-tracking);
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  border: var(--border-thin);
  white-space: nowrap;
  transition: background-color var(--transition-color), color var(--transition-color), border-color var(--transition-color);
}

.tag:hover {
  background-color: rgba(255, 179, 71, 0.1);
  color: var(--color-amber-glow);
  border-color: var(--color-amber-glow);
}

.tag--amber {
  background-color: rgba(255, 179, 71, 0.15);
  color: var(--color-amber-glow);
  border-color: rgba(255, 179, 71, 0.3);
}

.tag--raspberry {
  background-color: rgba(230, 57, 70, 0.15);
  color: var(--color-raspberry-red);
  border-color: rgba(230, 57, 70, 0.3);
}

.tag--emerald {
  background-color: rgba(15, 61, 62, 0.5);
  color: var(--color-soft-ivory);
  border-color: rgba(255, 255, 255, 0.15);
}

.tag--solid-amber {
  background-color: var(--color-amber-glow);
  color: var(--color-dark-amber);
  border-color: var(--color-amber-glow);
}

.tag--solid-raspberry {
  background-color: var(--color-raspberry-red);
  color: var(--color-soft-ivory);
  border-color: var(--color-raspberry-red);
}

.tag--small {
  font-size: 0.65rem;
  padding: 4px 10px;
}

.tag--large {
  font-size: 0.875rem;
  padding: 8px 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding-inline: 8px;
  border-radius: var(--radius-pill);
  background-color: var(--color-raspberry-red);
  color: var(--color-soft-ivory);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge--amber {
  background-color: var(--color-amber-glow);
  color: var(--color-dark-amber);
}

.badge--emerald {
  background-color: var(--color-deep-emerald);
  color: var(--color-soft-ivory);
  border: var(--border-thin);
}

.badge--dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  padding: 0;
  border-radius: 50%;
}

.badge--dot-amber {
  background-color: var(--color-amber-glow);
}

.badge--dot-raspberry {
  background-color: var(--color-raspberry-red);
}

.badge--dot-emerald {
  background-color: var(--color-deep-emerald);
  border: 1px solid var(--color-border);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: var(--text-label-tracking);
  text-transform: uppercase;
  color: var(--color-amber-glow);
  margin-block-end: var(--space-3xs);
}

.eyebrow--raspberry {
  color: var(--color-raspberry-red);
}

.eyebrow--ivory {
  color: var(--color-soft-ivory);
}

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

.eyebrow:last-child {
  margin-block-end: 0;
}

.display {
  font-family: var(--font-heading);
  font-size: var(--text-display-size);
  font-weight: var(--text-display-weight);
  line-height: var(--text-display-line-height);
  letter-spacing: var(--text-heading-tracking);
  color: var(--color-text);
  margin-block-end: var(--space-xs);
}

.display:last-child {
  margin-block-end: 0;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-block-end: var(--space-2xs);
}

.lead:last-child {
  margin-block-end: 0;
}

.text-small {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  font-weight: var(--text-small-weight);
  color: var(--color-text-muted);
}

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

.text-amber {
  color: var(--color-amber-glow);
}

.text-raspberry {
  color: var(--color-raspberry-red);
}

.text-ivory {
  color: var(--color-soft-ivory);
}

.text-emerald {
  color: var(--color-deep-emerald);
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: var(--text-label-tracking);
}

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

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

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

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-italic {
  font-style: italic;
}

.text-nowrap {
  white-space: nowrap;
}

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

.text-break {
  word-break: break-word;
  overflow-wrap: break-word;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs);
  margin-block-end: var(--space-2xs);
}

.form-field:last-child {
  margin-block-end: 0;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-transform: uppercase;
}

.form-label--required::after {
  content: "*";
  color: var(--color-raspberry-red);
  margin-inline-start: var(--space-4xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-small);
  border: var(--border-thin);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  transition: border-color var(--transition-color), background-color var(--transition-color), box-shadow var(--transition-color);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-amber-glow);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(255, 179, 71, 0.25);
}

.form-input--error,
.form-textarea--error,
.form-select--error {
  border-color: var(--color-raspberry-red);
}

.form-input--error:focus,
.form-textarea--error:focus,
.form-select--error:focus {
  border-color: var(--color-raspberry-red);
  box-shadow: 0 0 0 2px rgba(230, 57, 70, 0.25);
}

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

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9C4B8' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-inline-end: 40px;
}

.form-select option {
  background-color: var(--color-midnight-indigo);
  color: var(--color-text);
}

.form-hint {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  color: var(--color-text-muted);
}

.form-error {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  color: var(--color-raspberry-red);
  font-weight: 600;
}

.form-checkbox,
.form-radio {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3xs);
  cursor: pointer;
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  color: var(--color-text);
}

.form-checkbox input[type="checkbox"],
.form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-block-start: 2px;
  flex-shrink: 0;
  accent-color: var(--color-amber-glow);
  cursor: pointer;
}

.form-checkbox--inline,
.form-radio--inline {
  display: inline-flex;
  margin-inline-end: var(--space-2xs);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}

.form-group--inline {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.form-group--inline .form-field {
  flex: 1;
  min-width: 200px;
  margin-block-end: 0;
}

.form-row {
  display: flex;
  gap: var(--space-2xs);
  flex-wrap: wrap;
}

.form-row > .form-field {
  flex: 1;
  min-width: 200px;
  margin-block-end: 0;
}

.form-row > .form-field--full {
  flex: 1 1 100%;
}

.form-actions {
  display: flex;
  gap: var(--space-2xs);
  align-items: center;
  flex-wrap: wrap;
  margin-block-start: var(--space-xs);
}

.form-actions--end {
  justify-content: flex-end;
}

.form-actions--between {
  justify-content: space-between;
}

.form-actions--center {
  justify-content: center;
}

.form-actions--stack {
  flex-direction: column;
  align-items: stretch;
}

.form-actions--stack .btn {
  width: 100%;
}

.form-divider {
  border: none;
  border-top: var(--border-thin);
  margin-block: var(--space-xs);
}

.form-section {
  margin-block-end: var(--space-sm);
}

.form-section:last-child {
  margin-block-end: 0;
}

.form-section__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: var(--text-heading-tracking);
  color: var(--color-text);
  margin-block-end: var(--space-2xs);
}

.form-section__title:last-child {
  margin-block-end: 0;
}

.form-section__description {
  color: var(--color-text-muted);
  margin-block-end: var(--space-2xs);
}

.form-section__description:last-child {
  margin-block-end: 0;
}

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-medium);
  border: var(--border-subtle);
  background-color: var(--color-bg-alt);
}

.media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.media--4-3 {
  aspect-ratio: 4 / 3;
}

.media--1-1 {
  aspect-ratio: 1 / 1;
}

.media--3-2 {
  aspect-ratio: 3 / 2;
}

.media--2-1 {
  aspect-ratio: 2 / 1;
}

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

.media--contain {
  object-fit: contain;
}

.media__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: var(--space-2xs);
  background: var(--gradient-hero-overlay);
  color: var(--color-soft-ivory);
}

.media__overlay--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.media__overlay--top {
  align-items: flex-start;
  justify-content: flex-start;
}

.media__overlay--bottom {
  align-items: flex-end;
  justify-content: flex-start;
}

.media__overlay--duotone {
  background: var(--gradient-duotone);
}

.media__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xs);
  background: linear-gradient(180deg, transparent 0%, rgba(11, 16, 38, 0.9) 100%);
  color: var(--color-soft-ivory);
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media__caption--amber {
  color: var(--color-amber-glow);
}

.media__caption--raspberry {
  color: var(--color-raspberry-red);
}

.media__inner-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
  pointer-events: none;
}

.media--large {
  border-radius: var(--radius-large);
}

.media--small {
  border-radius: var(--radius-small);
}

.media--pill {
  border-radius: var(--radius-pill);
}

.media--interactive {
  cursor: pointer;
  transition: transform var(--transition-transform), box-shadow var(--transition-transform);
}

.media--interactive:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card-raised);
}

.media--interactive:hover .media__overlay {
  background: rgba(255, 179, 71, 0.15);
}

.media--interactive:hover .media__overlay--duotone {
  background: var(--gradient-duotone);
}

.media > :last-child {
  margin-block-end: 0;
}

.divider {
  border: none;
  border-top: var(--border-thin);
  margin-block: var(--space-md);
}

.divider--subtle {
  border-top-color: var(--color-border-subtle);
}

.divider--amber {
  border-top-color: var(--color-amber-glow);
  border-top-width: 2px;
}

.divider--raspberry {
  border-top-color: var(--color-raspberry-red);
  border-top-width: 2px;
}

.divider--vertical {
  border-top: none;
  border-inline-start: var(--border-thin);
  margin-block: 0;
  margin-inline: var(--space-md);
  height: auto;
  align-self: stretch;
}

.divider--small {
  margin-block: var(--space-2xs);
}

.divider--large {
  margin-block: var(--space-lg);
}

.divider--none {
  margin-block: 0;
}

.spacer {
  display: block;
  height: var(--space-xs);
}

.spacer--small {
  height: var(--space-3xs);
}

.spacer--medium {
  height: var(--space-sm);
}

.spacer--large {
  height: var(--space-lg);
}

.spacer--xl {
  height: var(--space-xl);
}

.spacer--2xl {
  height: var(--space-2xl);
}

.spacer--none {
  height: 0;
}

.flex {
  display: flex;
  gap: var(--space-2xs);
  flex-wrap: wrap;
  min-width: 0;
}

.flex > * {
  min-width: 0;
  flex-shrink: 1;
}

.flex--nowrap {
  flex-wrap: nowrap;
}

.flex--wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex--column {
  flex-direction: column;
}

.flex--column-reverse {
  flex-direction: column-reverse;
}

.flex--row {
  flex-direction: row;
}

.flex--row-reverse {
  flex-direction: row-reverse;
}

.flex--align-start {
  align-items: flex-start;
}

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

.flex--align-end {
  align-items: flex-end;
}

.flex--align-stretch {
  align-items: stretch;
}

.flex--align-baseline {
  align-items: baseline;
}

.flex--justify-start {
  justify-content: flex-start;
}

.flex--justify-center {
  justify-content: center;
}

.flex--justify-end {
  justify-content: flex-end;
}

.flex--justify-between {
  justify-content: space-between;
}

.flex--justify-around {
  justify-content: space-around;
}

.flex--justify-evenly {
  justify-content: space-evenly;
}

.flex--gap-none {
  gap: 0;
}

.flex--gap-4xs {
  gap: var(--space-4xs);
}

.flex--gap-3xs {
  gap: var(--space-3xs);
}

.flex--gap-2xs {
  gap: var(--space-2xs);
}

.flex--gap-xs {
  gap: var(--space-xs);
}

.flex--gap-sm {
  gap: var(--space-sm);
}

.flex--gap-md {
  gap: var(--space-md);
}

.flex--gap-lg {
  gap: var(--space-lg);
}

.flex--gap-xl {
  gap: var(--space-xl);
}

.flex--grow {
  flex: 1 1 auto;
}

.flex--shrink-0 {
  flex-shrink: 0;
}

.flex--shrink-1 {
  flex-shrink: 1;
}

.flex--basis-auto {
  flex-basis: auto;
}

.flex--basis-0 {
  flex-basis: 0;
}

.flex--basis-full {
  flex-basis: 100%;
}

.flex--basis-half {
  flex-basis: calc(50% - var(--space-2xs));
}

.flex--basis-third {
  flex-basis: calc(33.333% - var(--space-2xs));
}

.flex--basis-quarter {
  flex-basis: calc(25% - var(--space-2xs));
}

.flex--self-start {
  align-self: flex-start;
}

.flex--self-center {
  align-self: center;
}

.flex--self-end {
  align-self: flex-end;
}

.flex--self-stretch {
  align-self: stretch;
}

.flex--self-baseline {
  align-self: baseline;
}

.flex--content-start {
  align-content: flex-start;
}

.flex--content-center {
  align-content: center;
}

.flex--content-end {
  align-content: flex-end;
}

.flex--content-between {
  align-content: space-between;
}

.flex--content-around {
  align-content: space-around;
}

.flex--content-stretch {
  align-content: stretch;
}

.flex--inline {
  display: inline-flex;
}

.grid {
  display: grid;
  gap: var(--space-2xs);
  min-width: 0;
}

.grid > * {
  min-width: 0;
}

.grid--inline {
  display: inline-grid;
}

.grid--gap-none {
  gap: 0;
}

.grid--gap-4xs {
  gap: var(--space-4xs);
}

.grid--gap-3xs {
  gap: var(--space-3xs);
}

.grid--gap-2xs {
  gap: var(--space-2xs);
}

.grid--gap-xs {
  gap: var(--space-xs);
}

.grid--gap-sm {
  gap: var(--space-sm);
}

.grid--gap-md {
  gap: var(--space-md);
}

.grid--gap-lg {
  gap: var(--space-lg);
}

.grid--gap-xl {
  gap: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

.grid--cols-auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--cols-auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid--cols-auto-lg {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.grid--rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

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

.grid--rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.grid--rows-auto {
  grid-template-rows: auto;
}

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

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

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

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

.grid--justify-start {
  justify-items: start;
}

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

.grid--justify-end {
  justify-items: end;
}

.grid--justify-stretch {
  justify-items: stretch;
}

.grid--content-start {
  align-content: start;
}

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

.grid--content-end {
  align-content: end;
}

.grid--content-between {
  align-content: space-between;
}

.grid--content-around {
  align-content: space-around;
}

.grid--content-stretch {
  align-content: stretch;
}

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

.grid--place-start {
  place-items: start;
}

.grid--place-end {
  place-items: end;
}

.grid--place-stretch {
  place-items: stretch;
}

.grid--dense {
  grid-auto-flow: dense;
}

.grid--masonry {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 10px;
  grid-auto-flow: dense;
}

.grid--masonry > * {
  grid-row: span 12;
}

.grid--masonry > .grid__item--tall {
  grid-row: span 18;
}

.grid--masonry > .grid__item--short {
  grid-row: span 8;
}

.grid--masonry > .grid__item--medium {
  grid-row: span 14;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  min-width: 0;
}

.stack > * {
  min-width: 0;
}

.stack--gap-none {
  gap: 0;
}

.stack--gap-4xs {
  gap: var(--space-4xs);
}

.stack--gap-3xs {
  gap: var(--space-3xs);
}

.stack--gap-2xs {
  gap: var(--space-2xs);
}

.stack--gap-xs {
  gap: var(--space-xs);
}

.stack--gap-sm {
  gap: var(--space-sm);
}

.stack--gap-md {
  gap: var(--space-md);
}

.stack--gap-lg {
  gap: var(--space-lg);
}

.stack--gap-xl {
  gap: var(--space-xl);
}

.stack--align-start {
  align-items: flex-start;
}

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

.stack--align-end {
  align-items: flex-end;
}

.stack--align-stretch {
  align-items: stretch;
}

.stack--justify-start {
  justify-content: flex-start;
}

.stack--justify-center {
  justify-content: center;
}

.stack--justify-end {
  justify-content: flex-end;
}

.stack--justify-between {
  justify-content: space-between;
}

.stack--justify-around {
  justify-content: space-around;
}

.stack--justify-evenly {
  justify-content: space-evenly;
}

.stack--inline {
  display: inline-flex;
}

.stack--row {
  flex-direction: row;
  flex-wrap: wrap;
}

.stack--row-nowrap {
  flex-direction: row;
  flex-wrap: nowrap;
}

.stack--row-reverse {
  flex-direction: row-reverse;
  flex-wrap: wrap;
}

.stack--column-reverse {
  flex-direction: column-reverse;
}

.stack--grow {
  flex: 1 1 auto;
}

.stack--shrink-0 {
  flex-shrink: 0;
}

.stack--shrink-1 {
  flex-shrink: 1;
}

.stack--self-start {
  align-self: flex-start;
}

.stack--self-center {
  align-self: center;
}

.stack--self-end {
  align-self: flex-end;
}

.stack--self-stretch {
  align-self: stretch;
}

.stack--self-baseline {
  align-self: baseline;
}

.stack--wrap {
  flex-wrap: wrap;
}

.stack--nowrap {
  flex-wrap: nowrap;
}

.stack--wrap-reverse {
  flex-wrap: wrap-reverse;
}

.stack--basis-auto {
  flex-basis: auto;
}

.stack--basis-0 {
  flex-basis: 0;
}

.stack--basis-full {
  flex-basis: 100%;
}

.stack--basis-half {
  flex-basis: calc(50% - var(--space-2xs));
}

.stack--basis-third {
  flex-basis: calc(33.333% - var(--space-2xs));
}

.stack--basis-quarter {
  flex-basis: calc(25% - var(--space-2xs));
}

.stack--content-start {
  align-content: flex-start;
}

.stack--content-center {
  align-content: center;
}

.stack--content-end {
  align-content: flex-end;
}

.stack--content-between {
  align-content: space-between;
}

.stack--content-around {
  align-content: space-around;
}

.stack--content-stretch {
  align-content: stretch;
}

.list-plain {
  list-style: none;
  padding-inline-start: 0;
  margin-block-end: var(--space-2xs);
}

.list-plain:last-child {
  margin-block-end: 0;
}

.list-plain > li {
  margin-block-end: 0;
}

.list-inline {
  list-style: none;
  padding-inline-start: 0;
  margin-block-end: var(--space-2xs);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  align-items: center;
}

.list-inline:last-child {
  margin-block-end: 0;
}

.list-inline > li {
  margin-block-end: 0;
}

.list-inline--gap-none {
  gap: 0;
}

.list-inline--gap-4xs {
  gap: var(--space-4xs);
}

.list-inline--gap-3xs {
  gap: var(--space-3xs);
}

.list-inline--gap-2xs {
  gap: var(--space-2xs);
}

.list-inline--gap-xs {
  gap: var(--space-xs);
}

.list-inline--gap-sm {
  gap: var(--space-sm);
}

.list-inline--gap-md {
  gap: var(--space-md);
}

.list-inline--gap-lg {
  gap: var(--space-lg);
}

.list-inline--gap-xl {
  gap: var(--space-xl);
}

.list-inline--nowrap {
  flex-wrap: nowrap;
}

.list-inline--align-start {
  align-items: flex-start;
}

.list-inline--align-center {
  align-items: center;
}

.list-inline--align-end {
  align-items: flex-end;
}

.list-inline--justify-start {
  justify-content: flex-start;
}

.list-inline--justify-center {
  justify-content: center;
}

.list-inline--justify-end {
  justify-content: flex-end;
}

.list-inline--justify-between {
  justify-content: space-between;
}

.list-inline--justify-around {
  justify-content: space-around;
}

.list-inline--justify-evenly {
  justify-content: space-evenly;
}

.list-inline--column {
  flex-direction: column;
  align-items: flex-start;
}

.list-inline--column-center {
  flex-direction: column;
  align-items: center;
}

.list-inline--column-end {
  flex-direction: column;
  align-items: flex-end;
}

.list-inline--column-stretch {
  flex-direction: column;
  align-items: stretch;
}

.list-inline--column-stretch > li {
  width: 100%;
}

.list-styled {
  list-style: disc;
  padding-inline-start: var(--space-xs);
  margin-block-end: var(--space-2xs);
}

.list-styled:last-child {
  margin-block-end: 0;
}

.list-styled > li {
  margin-block-end: var(--space-4xs);
}

.list-styled > li:last-child {
  margin-block-end: 0;
}

.list-styled--ordered {
  list-style: decimal;
}

.list-styled--none {
  list-style: none;
  padding-inline-start: 0;
}

.list-styled--none > li {
  margin-block-end: 0;
}

.list-styled--check {
  list-style: none;
  padding-inline-start: 0;
}

.list-styled--check > li {
  position: relative;
  padding-inline-start: var(--space-xs);
  margin-block-end: var(--space-3xs);
}

.list-styled--check > li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-amber-glow);
  font-weight: 700;
}

.list-styled--check > li:last-child {
  margin-block-end: 0;
}

.list-styled--arrow {
  list-style: none;
  padding-inline-start: 0;
}

.list-styled--arrow > li {
  position: relative;
  padding-inline-start: var(--space-xs);
  margin-block-end: var(--space-3xs);
}

.list-styled--arrow > li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-amber-glow);
  font-weight: 700;
}

.list-styled--arrow > li:last-child {
  margin-block-end: 0;
}

.list-styled--dot {
  list-style: none;
  padding-inline-start: 0;
}

.list-styled--dot > li {
  position: relative;
  padding-inline-start: var(--space-2xs);
  margin-block-end: var(--space-3xs);
}

.list-styled--dot > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-amber-glow);
}

.list-styled--dot > li:last-child {
  margin-block-end: 0;
}

.list-styled--amber {
  color: var(--color-amber-glow);
}

.list-styled--raspberry {
  color: var(--color-raspberry-red);
}

.list-styled--ivory {
  color: var(--color-soft-ivory);
}

.list-styled--muted {
  color: var(--color-text-muted);
}

.list-styled--small {
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
}

.list-styled--large {
  font-size: 1.125rem;
  line-height: 1.6;
}

.list-styled--tight > li {
  margin-block-end: var(--space-4xs);
}

.list-styled--tight > li:last-child {
  margin-block-end: 0;
}

.list-styled--loose > li {
  margin-block-end: var(--space-2xs);
}

.list-styled--loose > li:last-child {
  margin-block-end: 0;
}

.list-styled--gap-none > li {
  margin-block-end: 0;
}

.list-styled--gap-4xs > li {
  margin-block-end: var(--space-4xs);
}

.list-styled--gap-4xs > li:last-child {
  margin-block-end: 0;
}

.list-styled--gap-3xs > li {
  margin-block-end: var(--space-3xs);
}

.list-styled--gap-3xs > li:last-child {
  margin-block-end: 0;
}

.list-styled--gap-2xs > li {
  margin-block-end: var(--space-2xs);
}

.list-styled--gap-2xs > li:last-child {
  margin-block-end: 0;
}

.list-styled--gap-xs > li {
  margin-block-end: var(--space-xs);
}

.list-styled--gap-xs > li:last-child {
  margin-block-end: 0;
}

.list-styled--gap-sm > li {
  margin-block-end: var(--space-sm);
}

.list-styled--gap-sm > li:last-child {
  margin-block-end: 0;
}

.list-styled--gap-md > li {
  margin-block-end: var(--space-md);
}

.list-styled--gap-md > li:last-child {
  margin-block-end: 0;
}

.list-styled--gap-lg > li {
  margin-block-end: var(--space-lg);
}

.list-styled--gap-lg > li:last-child {
  margin-block-end: 0;
}

.list-styled--gap-xl > li {
  margin-block-end: var(--space-xl);
}

.list-styled--gap-xl > li:last-child {
  margin-block-end: 0;
}

.list-styled--inline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  padding-inline-start: 0;
  list-style: none;
}

.list-styled--inline > li {
  margin-block-end: 0;
}

.list-styled--inline-gap-none {
  gap: 0;
}

.list-styled--inline-gap-4xs {
  gap: var(--space-4xs);
}

.list-styled--inline-gap-3xs {
  gap: var(--space-3xs);
}

.list-styled--inline-gap-2xs {
  gap: var(--space-2xs);
}

.list-styled--inline-gap-xs {
  gap: var(--space-xs);
}

.list-styled--inline-gap-sm {
  gap: var(--space-sm);
}

.list-styled--inline-gap-md {
  gap: var(--space-md);
}

.list-styled--inline-gap-lg {
  gap: var(--space-lg);
}

.list-styled--inline-gap-xl {
  gap: var(--space-xl);
}

.list-styled--inline-nowrap {
  flex-wrap: nowrap;
}

.list-styled--inline-align-start {
  align-items: flex-start;
}

.list-styled--inline-align-center {
  align-items: center;
}

.list-styled--inline-align-end {
  align-items: flex-end;
}

.list-styled--inline-justify-start {
  justify-content: flex-start;
}

.list-styled--inline-justify-center {
  justify-content: center;
}

.list-styled--inline-justify-end {
  justify-content: flex-end;
}

.list-styled--inline-justify-between {
  justify-content: space-between;
}

.list-styled--inline-justify-around {
  justify-content: space-around;
}

.list-styled--inline-justify-evenly {
  justify-content: space-evenly;
}

.list-styled--inline-column {
  flex-direction: column;
  align-items: flex-start;
}

.list-styled--inline-column-center {
  flex-direction: column;
  align-items: center;
}

.list-styled--inline-column-end {
  flex-direction: column;
  align-items: flex-end;
}

.list-styled--inline-column-stretch {
  flex-direction: column;
  align-items: stretch;
}

.list-styled--inline-column-stretch > li {
  width: 100%;
}

.list-styled--inline-column-stretch > li > * {
  width: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-2xs);
  z-index: 9999;
  padding: var(--space-3xs) var(--space-2xs);
  background-color: var(--color-amber-glow);
  color: var(--color-dark-amber);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-small);
  transition: top var(--transition-color);
}

.skip-link:focus {
  top: var(--space-2xs);
  outline: var(--outline-focus);
  outline-offset: 2px;
}

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

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: var(--space-3xs) var(--space-2xs);
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background-color: var(--color-amber-glow);
  color: var(--color-dark-amber);
  border-radius: var(--radius-small);
  outline: var(--outline-focus);
  outline-offset: 2px;
}

.ratio {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-medium);
  border: var(--border-subtle);
  background-color: var(--color-bg-alt);
}

.ratio > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.ratio--4-3 {
  aspect-ratio: 4 / 3;
}

.ratio--1-1 {
  aspect-ratio: 1 / 1;
}

.ratio--3-2 {
  aspect-ratio: 3 / 2;
}

.ratio--2-1 {
  aspect-ratio: 2 / 1;
}

.ratio--21-9 {
  aspect-ratio: 21 / 9;
}

.ratio--large {
  border-radius: var(--radius-large);
}

.ratio--small {
  border-radius: var(--radius-small);
}

.ratio--pill {
  border-radius: var(--radius-pill);
}

.ratio--none {
  border-radius: 0;
  border: none;
}

.ratio--contain > * {
  object-fit: contain;
}

.ratio--cover > * {
  object-fit: cover;
}

.ratio--fill > * {
  object-fit: fill;
}

.ratio--none-fit > * {
  object-fit: none;
}

.ratio--scale-down > * {
  object-fit: scale-down;
}

.ratio--interactive {
  cursor: pointer;
  transition: transform var(--transition-transform), box-shadow var(--transition-transform);
}

.ratio--interactive:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card-raised);
}

.ratio--interactive:hover > * {
  filter: brightness(1.1);
}

.ratio--interactive:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 179, 71, 0.1);
  border-radius: inherit;
  pointer-events: none;
}

.ratio__inner-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.ratio__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: var(--space-2xs);
  background: var(--gradient-hero-overlay);
  color: var(--color-soft-ivory);
  z-index: 2;
  border-radius: inherit;
}

.ratio__overlay--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ratio__overlay--top {
  align-items: flex-start;
  justify-content: flex-start;
}

.ratio__overlay--bottom {
  align-items: flex-end;
  justify-content: flex-start;
}

.ratio__overlay--duotone {
  background: var(--gradient-duotone);
}

.ratio__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-2xs);
  background: linear-gradient(180deg, transparent 0%, rgba(11, 16, 38, 0.9) 100%);
  color: var(--color-soft-ivory);
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
  border-radius: inherit;
}

.ratio__caption--amber {
  color: var(--color-amber-glow);
}

.ratio__caption--raspberry {
  color: var(--color-raspberry-red);
}

.ratio > :last-child {
  margin-block-end: 0;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(11, 16, 38, 0.85);
  padding: var(--space-2xs);
}

.overlay--hidden {
  display: none;
}

.overlay--transparent {
  background-color: transparent;
}

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

.overlay__content {
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-large);
  border: var(--border-thin);
  padding: var(--space-sm);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-card-raised);
}

.overlay__content--small {
  max-width: 400px;
}

.overlay__content--medium {
  max-width: 600px;
}

.overlay__content--large {
  max-width: 800px;
}

.overlay__content--full {
  max-width: none;
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
  border: none;
}

.overlay__content--flat {
  background-color: var(--color-midnight-indigo);
}

.overlay__content--raised {
  background: var(--gradient-surface-raised);
}

.overlay__content > :last-child {
  margin-block-end: 0;
}

.overlay__close {
  position: absolute;
  top: var(--space-2xs);
  right: var(--space-2xs);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color var(--transition-color), color var(--transition-color);
  z-index: 10;
}

.overlay__close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-amber-glow);
}

.overlay__close:focus-visible {
  outline: var(--outline-focus);
  outline-offset: 2px;
}

.overlay__header {
  margin-block-end: var(--space-2xs);
}

.overlay__header > :last-child {
  margin-block-end: 0;
}

.overlay__body {
  margin-block-end: var(--space-2xs);
}

.overlay__body > :last-child {
  margin-block-end: 0;
}

.overlay__footer {
  display: flex;
  gap: var(--space-2xs);
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.overlay__footer--start {
  justify-content: flex-start;
}

.overlay__footer--center {
  justify-content: center;
}

.overlay__footer--between {
  justify-content: space-between;
}

.overlay__footer--stack {
  flex-direction: column;
  align-items: stretch;
}

.overlay__footer--stack .btn {
  width: 100%;
}

.overlay__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3-size);
  font-weight: var(--text-h3-weight);
  line-height: var(--text-h3-line-height);
  letter-spacing: var(--text-heading-tracking);
  color: var(--color-text);
  margin-block-end: 0;
}

.overlay__description {
  color: var(--color-text-muted);
  margin-block-end: 0;
}

.overlay__divider {
  border: none;
  border-top: var(--