 :root {
  --color-bg: #fdfbf7;
  --color-bg-alt: #f8f6f0;
  --color-surface: #ffffff;
  --color-border-subtle: #e7e5e4;
  --color-text: #1c1917;
  --color-text-muted: #6b7280;
  --color-primary: #ea580c;
  --color-primary-soft: rgba(234, 88, 12, 0.08);
  --color-success: #15803d;
  --color-warning: #f59e0b;
  --color-danger: #b91c1c;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2933;
  --color-gray-900: #111827;
  --color-accent-felt: #15803d;
  --color-accent-copper: #ea580c;
  --font-serif-display: "Cormorant Garamond", "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-sans-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans-ui: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-36: 9rem;
  --space-40: 10rem;
  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-pill: 999px;
  --radius-card: 0.75rem;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px rgba(15, 23, 42, 0.12), 0 4px 6px rgba(15, 23, 42, 0.08);
  --transition-fast: 120ms ease-out;
  --transition-normal: 180ms ease-out;
  --transition-slow: 260ms ease-out;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  background: radial-gradient(circle at top left, #f8f6f0 0, #fdfbf7 48%, #fdfbf7 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.75em;
  font-family: var(--font-serif-display);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: 0.01em;
  color: var(--color-text);
}
h1 {
  font-size: clamp(2.5rem, 3.3vw, 3.25rem);
}
h2 {
  font-size: clamp(2rem, 2.6vw, 2.5rem);
}
h3 {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}
p {
  margin: 0 0 1rem;
  color: var(--color-text);
}
strong {
  font-weight: 600;
}
small {
  font-size: 0.875em;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  text-underline-offset: 0.15em;
  transition: color var(--transition-normal);
}
a:hover {
  color: #c2410c;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
}
button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  padding: 0;
}
input, textarea, select {
  border-radius: 0;
}
[hidden] {
  display: none !important;
}
::selection {
  background: rgba(234, 88, 12, 0.16);
}
:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid var(--color-accent-felt);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-main {
  flex: 1 0 auto;
}
.page-footer {
  flex-shrink: 0;
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1120px;
}
.section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.section--dense {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(248, 246, 240, 0.9);
  color: var(--color-text-muted);
  font-family: var(--font-sans-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.section-title {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}
.section-subtitle {
  font-family: var(--font-sans-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
}
.hero {
  padding-top: 5rem;
  padding-bottom: 4.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.15rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 211, 209, 0.9);
  background: rgba(248, 246, 240, 0.9);
  font-family: var(--font-sans-ui);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero-eyebrow-pill {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-copper), var(--color-accent-felt));
}
.hero-title {
  font-size: clamp(2.7rem, 4vw, 3.4rem);
  line-height: 1.1;
}
.hero-highlight {
  display: inline-block;
  position: relative;
}
.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 0.55em;
  background: linear-gradient(to right, rgba(234, 88, 12, 0.09), rgba(21, 128, 61, 0.05));
  z-index: -1;
}
.hero-body {
  font-family: var(--font-sans-body);
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 34rem;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans-ui);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.badge-pill--copper {
  border-color: rgba(234, 88, 12, 0.3);
  background: rgba(234, 88, 12, 0.04);
  color: #9a3412;
}
.badge-pill--felt {
  border-color: rgba(21, 128, 61, 0.3);
  background: rgba(21, 128, 61, 0.04);
  color: #166534;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}
.hero-caption {
  font-size: 0.8rem;
  font-family: var(--font-sans-ui);
  color: var(--color-text-muted);
}
.hero-right {
  position: relative;
}
.hero-media-card {
  position: relative;
  border-radius: 1.1rem;
  border: 1px solid rgba(214, 211, 209, 0.9);
  background: radial-gradient(circle at top left, #f8f6f0 0, #fdfbf7 42%, #fdfbf7 100%);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  overflow: hidden;
}
.hero-media-image {
  border-radius: 0.85rem;
  overflow: hidden;
  background-color: #111827;
}
.hero-media-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.hero-media-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-family: var(--font-sans-ui);
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}
.hero-meta-value {
  font-size: 0.95rem;
  color: var(--color-text);
}
.hero-stat-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #fefce8;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.4);
  font-family: var(--font-sans-ui);
}
.hero-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.8;
}
.hero-stat-value {
  font-size: 0.95rem;
  font-weight: 600;
}
.hero-chip-dot-row {
  display: flex;
  gap: 0.16rem;
  margin-left: auto;
}
.hero-chip-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
}
.hero-chip-dot--copper {
  background: #ea580c;
}
.hero-chip-dot--felt {
  background: #16a34a;
}
.hero-chip-dot--linen {
  background: #e7e5e4;
}
@media (max-width: 960px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
  .hero-right {
    max-width: 30rem;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .section {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-fast);
  white-space: nowrap;
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--color-accent-copper), #f97316);
  color: #fefce8;
  box-shadow: 0 10px 18px rgba(234, 88, 12, 0.35);
}
.btn--primary:hover:not(:disabled):not([aria-disabled="true"]) {
  background: linear-gradient(135deg, #c2410c, #ea580c);
  box-shadow: 0 14px 28px rgba(185, 71, 8, 0.45);
  transform: translateY(-1px);
}
.btn--outline {
  background: rgba(248, 246, 240, 0.8);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--color-text);
}
.btn--outline:hover:not(:disabled):not([aria-disabled="true"]) {
  background: #f8fafc;
}
.btn--felt {
  background: radial-gradient(circle at 0 0, #22c55e, var(--color-accent-felt));
  color: #ecfdf5;
  box-shadow: 0 10px 18px rgba(22, 163, 74, 0.35);
}
.btn--felt:hover:not(:disabled):not([aria-disabled="true"]) {
  background: radial-gradient(circle at 0 0, #16a34a, #166534);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.45);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--color-text);
}
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}
.btn-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  font-family: var(--font-sans-body);
  font-size: 0.95rem;
  line-height: 1.45;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}
textarea {
  min-height: 140px;
  resize: vertical;
}
input::placeholder,
textarea::placeholder {
  color: var(--color-gray-400);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent-felt);
  box-shadow: 0 0 0 1px rgba(21, 128, 61, 0.4);
}
input[disabled],
select[disabled],
textarea[disabled] {
  background-color: var(--color-gray-50);
  color: var(--color-gray-400);
  cursor: not-allowed;
}
.form-field {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  margin-bottom: 0.3rem;
  font-family: var(--font-sans-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}
.form-help {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.form-error {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--color-danger);
}
.card {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
.card--soft {
  background: radial-gradient(circle at top left, #f8f6f0 0, #ffffff 60%);
}
.card--felt-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(21, 128, 61, 0.14);
  pointer-events: none;
}
.card-header {
  margin-bottom: 1rem;
}
.card-title {
  margin-bottom: 0.2rem;
  font-size: 1.25rem;
}
.card-subtitle {
  font-family: var(--font-sans-ui);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.card-body {
  font-size: 0.95rem;
  color: var(--color-text);
}
.card-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
  font-family: var(--font-sans-ui);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}
.card-meta-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-xs {
  gap: 0.25rem;
}
.gap-sm {
  gap: 0.5rem;
}
.gap-md {
  gap: 1rem;
}
.gap-lg {
  gap: 1.5rem;
}
.gap-xl {
  gap: 2rem;
}
.stack-sm > * + * {
  margin-top: 0.5rem;
}
.stack-md > * + * {
  margin-top: 1rem;
}
.stack-lg > * + * {
  margin-top: 1.5rem;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-muted {
  color: var(--color-text-muted);
}
.chip-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 88, 12, 0.4);
  background: rgba(234, 88, 12, 0.06);
  font-family: var(--font-sans-ui);
  font-size: 0.78rem;
  color: #9a3412;
}
.chip-counter-icon {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fed7aa, #ea580c 55%, #7c2d12 100%);
  box-shadow: 0 0 0 1px rgba(120, 53, 15, 0.5);
}
.chip-counter--felt {
  border-color: rgba(21, 128, 61, 0.4);
  background: rgba(21, 128, 61, 0.06);
  color: #166534;
}
.chip-counter--felt .chip-counter-icon {
  background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e 55%, #166534 100%);
  box-shadow: 0 0 0 1px rgba(22, 101, 52, 0.5);
}
.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.list-inline li::before {
  content: none;
}
.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;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  font-family: var(--font-sans-ui);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.badge--copper {
  border-color: rgba(234, 88, 12, 0.45);
  background: rgba(234, 88, 12, 0.04);
  color: #9a3412;
}
.badge--felt {
  border-color: rgba(21, 128, 61, 0.45);
  background: rgba(21, 128, 61, 0.04);
  color: #166534;
}
.badge--soft {
  border-style: dashed;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-family: var(--font-sans-ui);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
  background: linear-gradient(to bottom, rgba(253, 251, 247, 0.96), rgba(253, 251, 247, 0.86));
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
}
/* Blur on a pseudo so backdrop-filter does not trap position:fixed .nav-menu */
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(234, 88, 12, 0.4);
  background: radial-gradient(circle at 30% 20%, #fed7aa, #ea580c 50%, #7c2d12 100%);
  box-shadow: 0 8px 18px rgba(120, 53, 15, 0.4);
}
.brand-text-main {
  font-family: var(--font-serif-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-text-sub {
  font-family: var(--font-sans-ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-sans-ui);
  font-size: 0.9rem;
}
.nav-link {
  position: relative;
  padding: 0.2rem 0;
  color: var(--color-text-muted);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--color-accent-copper), var(--color-accent-felt));
  transform-origin: center;
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.nav-link:hover {
  color: var(--color-text);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link--active {
  color: var(--color-text);
}
.nav-link--active::after {
  transform: scaleX(1);
}
.nav-cta {
  display: none;
}
.nav-toggle {
  display: none;
}
@media (max-width: 840px) {
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    background: rgba(248, 246, 240, 0.95);
  }
  .nav-toggle-bar {
    display: block;
    width: 1.15rem;
    height: 2px;
    border-radius: 999px;
    background-color: #0f172a;
  }
}
ul {
  list-style: none !important;
}
html, body {
  overflow-x: clip;
  max-width: 100%;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}
