@charset "UTF-8";

/* src/styles/styles.scss */
@keyframes expeditionPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
@keyframes expeditionFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes success-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
@keyframes expeditionFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes campfireGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
.animate-pulse {
  animation: expeditionPulse 2s infinite;
}
.animate-fade-in {
  animation: expeditionFadeIn 0.8s ease-out;
}
.animate-float {
  animation: expeditionFloat 3s ease-in-out infinite;
}
.animate-glow {
  animation: campfireGlow 2s ease-in-out infinite;
}
.animate-shake {
  animation: shake 0.5s ease-in-out;
}
.animate-success {
  animation: success-pulse 1s ease-out;
}
.animate-stagger:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-stagger:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-stagger:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-stagger:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-stagger:nth-child(5) {
  animation-delay: 0.5s;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-pulse,
  .animate-fade-in,
  .animate-float,
  .animate-glow,
  .animate-shake,
  .animate-success {
    animation: none !important;
  }
}
html {
  font-size: 16px;
  line-height: 1.5;
}
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
em {
  font-style: italic;
}
h1 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}
h2 {
  font-size: 2.25rem;
}
h3 {
  font-size: 1.875rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}
p {
  margin: 0 0 0.75rem 0;
  line-height: 1.5;
}
a {
  color: #ff6b35;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul,
ol {
  margin: 0 0 0.75rem 0;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.25rem;
}
:root {
  --paper: #F5F0E8;
  --paper-warm: #EDE7D9;
  --ink: #2A2016;
  --ink-mid: #4A3E2E;
  --ink-soft: #7A6E5E;
  --rule: rgba(42, 32, 22, 0.15);
  --rule-strong: rgba(42, 32, 22, 0.28);
  --card-red: #D94F3D;
  --card-amber: #E8882A;
  --card-gold: #D4A017;
  --card-teal: #2E8B7A;
  --card-blue: #2E5FA3;
  --card-purple: #6B4C9A;
  --panel-warm: rgba(245, 240, 232, 0.91);
  --panel-card: rgba(245, 240, 232, 0.95);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #ff6b35;
  color: #ffffff;
  padding: 8px;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus {
  top: 6px;
}
::selection {
  background: #ff6b35;
  color: #ffffff;
}
::-moz-selection {
  background: #ff6b35;
  color: #ffffff;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 2px;
  letter-spacing: 0.01em;
  transition: 0.18s cubic-bezier(0.2, 0.6, 0.2, 1);
  line-height: 1;
  white-space: nowrap;
}
.btn svg {
  transition: 0.18s;
}
.btn:hover svg.arr {
  transform: translateX(4px);
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
}
.btn-primary:hover {
  background: var(--crimson-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(247, 243, 236, 0.4);
}
.btn-ghost-light:hover {
  background: var(--paper);
  color: var(--ink);
}
.btn-gold {
  background: var(--gold);
  color: #1a1206;
}
.btn-gold:hover {
  background: var(--gold-deep);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-light:hover {
  border-color: var(--ink);
}
.btn-sm {
  padding: 9px 14px;
  font-size: 13px;
}
.btn-lg {
  padding: 17px 30px;
  font-size: 16px;
}
.card {
  background: #e2e8f0;
  color: #0f2a44;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(15, 42, 68, 0.2);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(15, 42, 68, 0.3);
}
.card .card-icon {
  text-align: center;
  margin-bottom: 1rem;
}
.card .card-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(45%) saturate(3151%) hue-rotate(201deg) brightness(92%) contrast(103%);
}
.card .card-header {
  color: #0f2a44;
  font-family:
    "Brandon Grotesque",
    "Futura",
    "Trebuchet MS",
    sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.card .card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.card .card-features li {
  padding: 0.5rem 0;
  color: #2d5a87;
  font-size: 1rem;
  line-height: 1.625;
  position: relative;
}
.card .card-features li:before {
  content: "\2713";
  color: #10b981;
  font-weight: 700;
  margin-right: 0.5rem;
}
.card .card-actions {
  display: flex;
  justify-content: center;
  margin-top: auto;
}
.card.dark {
  background: #1a365d;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.card.dark .card-header {
  color: #e2e8f0;
}
.card.dark .card-features li {
  color: #94a3b8;
}
.card.dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.card.dark.success {
  border-left: 4px solid #10b981;
  background:
    linear-gradient(
      135deg,
      #0f2a44 0%,
      rgb(10.3915662651, 29.0963855422, 47.1084337349) 100%);
}
.card.dark.alert {
  border-left: 4px solid #ff4444;
  background:
    linear-gradient(
      135deg,
      #0f2a44 0%,
      rgb(10.3915662651, 29.0963855422, 47.1084337349) 100%);
}
.card.dark.info {
  border-left: 4px solid #ff6b35;
  background:
    linear-gradient(
      135deg,
      #0f2a44 0%,
      rgb(10.3915662651, 29.0963855422, 47.1084337349) 100%);
}
.card.featured {
  transform: scale(1.02);
  overflow: visible !important;
  box-shadow: 0 20px 60px rgba(15, 42, 68, 0.3), 0 0 0 2px rgba(255, 107, 53, 0.2);
}
.card.featured .popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b35;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  white-space: nowrap;
}
.card.featured:hover {
  transform: scale(1.02) translateY(-3px);
}
@media (max-width: 480px) {
  .card.featured {
    transform: none;
  }
  .card.featured:hover {
    transform: translateY(-2px);
  }
}
.card.elevated {
  box-shadow: 0 20px 60px rgba(15, 42, 68, 0.3);
}
.card.elevated:hover {
  box-shadow: 0 30px 100px rgba(15, 42, 68, 0.3), 0 0 0 1px rgba(226, 232, 240, 0.2);
}
.card.bordered {
  border: 2px solid #ff6b35;
}
.card.bordered:hover {
  border-color: #ffa366;
}
.card.compact {
  padding: 1.5rem;
}
.card.compact .card-header {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.card.large {
  padding: 40px;
}
.card.large .card-header {
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  .card {
    padding: 0.75rem;
  }
  .card .card-header {
    font-size: 1.125rem;
  }
  .card .card-features li {
    font-size: 0.875rem;
  }
}
.card.testimonial {
  background: #e2e8f0;
  color: #0f2a44;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(15, 42, 68, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card.testimonial .testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}
.card.testimonial .testimonial-content p {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #0f2a44;
  font-style: italic;
  margin: 0;
}
.card.testimonial .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.card.testimonial .testimonial-author .author-avatar {
  width: 48px;
  height: 48px;
  background: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.card.testimonial .testimonial-author .author-info {
  display: flex;
  flex-direction: column;
}
.card.testimonial .testimonial-author .author-info strong {
  color: #0f2a44;
  font-size: 1rem;
  font-weight: 700;
}
.card.testimonial .testimonial-author .author-info span {
  color: #2d5a87;
  font-size: 0.875rem;
}
.card.testimonial .result-metric {
  background: #ff6b35;
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}
.form-card {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(15, 42, 68, 0.3);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .form-card {
    margin: 0 0.75rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}
.form-card.light {
  background: #e2e8f0;
  color: #0f2a44;
}
.form-card.light .form-header h2 {
  color: #0f2a44;
}
.form-card.light .form-header p {
  color: #94a3b8;
}
.form-card.dark {
  background: #1a365d;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.form-card.dark .form-header h2 {
  color: #e2e8f0;
}
.form-card.dark .form-header p {
  color: #94a3b8;
}
.form-card.dark .form-group input,
.form-card.dark .form-group select,
.form-card.dark .form-group textarea {
  background: rgba(15, 42, 68, 0.6);
  border: 2px solid rgba(226, 232, 240, 0.2);
  color: #e2e8f0;
}
.form-card.dark .form-group input::placeholder,
.form-card.dark .form-group select::placeholder,
.form-card.dark .form-group textarea::placeholder {
  color: rgba(226, 232, 240, 0.5);
}
.form-card.dark .form-group input:focus,
.form-card.dark .form-group select:focus,
.form-card.dark .form-group textarea:focus {
  background: rgba(15, 42, 68, 0.8);
  border-color: #ff6b35;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.form-card.dark .form-group label {
  color: #e2e8f0;
}
.form-card.compact {
  padding: 2rem;
  border-radius: 16px;
  max-width: 480px;
}
.form-card.elevated {
  transform: translateY(-4px);
  box-shadow:
    0 25px 80px rgba(15, 42, 68, 0.5),
    0 0 0 1px rgba(226, 232, 240, 0.2),
    0 0 60px rgba(255, 107, 53, 0.2);
}
.form-card.elevated:hover {
  transform: translateY(-6px);
}
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.form-header h2 {
  font-family:
    "Brandon Grotesque",
    "Futura",
    "Trebuchet MS",
    sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .form-header h2 {
    font-size: 1rem;
  }
}
.form-header p {
  font-size: 1.125rem;
  line-height: 1.625;
}
@media (max-width: 480px) {
  .form-header p {
    font-size: 0.875rem;
  }
}
.form-header .subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .form .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.form .form-group {
  margin-bottom: 1.5rem;
}
.form .form-group label {
  display: block;
  font-family:
    "Trebuchet MS",
    "Century Gothic",
    "Arial",
    sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.form .form-group label::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #ff6b35;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
}
.form .form-group label .required {
  color: #ff6b35;
  margin-left: 2px;
}
.form .form-group input,
.form .form-group select,
.form .form-group textarea {
  width: 100%;
  background: rgba(45, 90, 135, 0.08);
  border: 2px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-family:
    "Trebuchet MS",
    "Century Gothic",
    "Arial",
    sans-serif;
  font-size: 1rem;
  transition: 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05);
}
.form .form-group input::placeholder,
.form .form-group select::placeholder,
.form .form-group textarea::placeholder {
  color: #94a3b8;
  opacity: 0.7;
}
.form .form-group input:focus,
.form .form-group select:focus,
.form .form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05), 0 0 0 3px rgba(255, 107, 53, 0.15);
  transform: translateY(-1px);
}
.form .form-group input:valid:not(:placeholder-shown),
.form .form-group select:valid:not(:placeholder-shown),
.form .form-group textarea:valid:not(:placeholder-shown) {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}
.form .form-group input:valid:not(:placeholder-shown):focus,
.form .form-group select:valid:not(:placeholder-shown):focus,
.form .form-group textarea:valid:not(:placeholder-shown):focus {
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05), 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.form .form-group input:invalid:not(:placeholder-shown):not(:focus),
.form .form-group select:invalid:not(:placeholder-shown):not(:focus),
.form .form-group textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.05);
}
.form .form-group input:disabled,
.form .form-group select:disabled,
.form .form-group textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: rgba(148, 163, 184, 0.1);
}
.form .form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.625;
  font-family:
    "Trebuchet MS",
    "Century Gothic",
    "Arial",
    sans-serif;
}
.form .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form .form-group select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}
.form .form-group input[type=checkbox],
.form .form-group input[type=radio] {
  width: auto;
  margin-right: 0.5rem;
  accent-color: #ff6b35;
}
.form-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .form-actions {
    flex-direction: column;
  }
  .form-actions .btn {
    width: 100%;
  }
}
.form-actions.center {
  justify-content: center;
}
.form-actions.space-between {
  justify-content: space-between;
}
.demo-includes,
.trust-indicators {
  margin: 1.5rem 0;
  text-align: center;
}
.demo-includes p,
.trust-indicators p {
  margin-bottom: 0.75rem;
}
.demo-includes p strong,
.trust-indicators p strong {
  font-weight: 700;
}
.demo-includes .trust-indicators,
.trust-indicators .trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.demo-includes .trust-indicators span,
.trust-indicators .trust-indicators span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(45, 90, 135, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: 0.3s ease;
}
.demo-includes .trust-indicators span:hover,
.trust-indicators .trust-indicators span:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-1px);
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes success-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.15);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  animation: shake 0.5s ease-in-out;
}
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  animation: success-pulse 1s ease-out;
}
.form-text {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  opacity: 0.8;
}
.form-error {
  color: #ff4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.form-error::before {
  content: "\26a0";
  font-size: 1rem;
}
.form-success {
  color: #10b981;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.form-success::before {
  content: "\2713";
  font-size: 1rem;
}
.form-errors {
  margin-top: 0.5rem;
  min-height: 20px;
}
.form-errors .error-text {
  display: block;
  color: #ff4444;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
.form-errors .error-text:last-child {
  margin-bottom: 0;
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff4444 !important;
  background: rgba(255, 68, 68, 0.05) !important;
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05), 0 0 0 2px rgba(239, 68, 68, 0.15) !important;
  animation: shake 0.5s ease-in-out;
}
.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
  box-shadow: inset 0 2px 4px rgba(15, 42, 68, 0.05), 0 0 0 3px rgba(239, 68, 68, 0.25) !important;
}
.alert {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  animation: slideInDown 0.3s ease-out;
}
.alert.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}
.alert.alert-error .icon-warning::before {
  content: "\26a0\fe0f";
}
.alert.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}
.alert.alert-success .icon-check::before {
  content: "\2705";
}
.loading-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.25rem;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.kicker {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
}
.kicker.muted {
  color: var(--muted);
}
.kicker.gold {
  color: var(--gold-deep);
}
.kicker.on-dark {
  color: var(--gold-soft);
}
.sec-head {
  max-width: 760px;
}
.sec-head h2 {
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.022em;
  margin-top: 18px;
}
.sec-head h2 em {
  color: var(--crimson);
}
.sec-head p {
  font-size: 19px;
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 620px;
}
.section.dark .sec-head p {
  color: #c8bdac;
}
.gjs {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      #1c140c,
      #0e0a06);
}
.gjs::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 78% 20%,
      rgba(184, 146, 74, 0.34),
      transparent 58%);
}
.gjs-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.gjs h2 {
  color: var(--paper);
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.gjs h2 em {
  color: var(--gold-soft);
}
.gjs .lede {
  color: #cdbfa6;
  margin-top: 22px;
  font-size: 19px;
}
.gjs-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.gjs-benefits li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: #e6dcc8;
  line-height: 1.4;
  align-items: flex-start;
}
.gjs-benefits li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  flex-shrink: 0;
  background: var(--gold);
  transform: rotate(45deg);
}
.gjs-card {
  background: rgba(20, 17, 14, 0.5);
  border: 1px solid rgba(184, 146, 74, 0.32);
  border-radius: 4px;
  padding: 36px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.gjs-card .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 16px;
}
.gjs-card .amt {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  color: var(--paper);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.gjs-card .amt small {
  font-size: 24px;
  color: var(--gold-soft);
}
.gjs-card .path {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(247, 243, 236, 0.16);
  font-size: 14.5px;
  color: #cdbfa6;
  line-height: 1.5;
}
.gjs-card .path b {
  color: var(--paper);
  font-weight: 600;
}
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      #d8ccb5 0 1px,
      transparent 1px 14px),
    linear-gradient(
      180deg,
      #e3d6bd,
      #d4c4a6);
  display: grid;
  place-items: center;
  color: #4a3f2d;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 2px;
  overflow: hidden;
}
.ph.dark {
  background:
    repeating-linear-gradient(
      135deg,
      #2a201a 0 1px,
      transparent 1px 14px),
    linear-gradient(
      180deg,
      #3a2a22,
      #1f1612);
  color: #c9b793;
}
.ph.crimson {
  background:
    repeating-linear-gradient(
      135deg,
      #6E0E25 0 1px,
      transparent 1px 14px),
    linear-gradient(
      180deg,
      var(--crimson),
      var(--crimson-deep));
  color: #f3d8b7;
}
.ph-label {
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1px;
  font-weight: 500;
}
.ph.dark .ph-label,
.ph.crimson .ph-label {
  background: rgba(0, 0, 0, 0.45);
  color: #f0e1c5;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper-card);
  margin-top: 52px;
}
.support-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.support-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.sup-card {
  padding: 34px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  transition: 0.2s;
  cursor: pointer;
}
.sup-card:hover {
  background: #fffaf0;
}
.sup-card .ic {
  width: 40px;
  height: 40px;
  background: var(--cream);
  color: var(--crimson-deep);
  display: grid;
  place-items: center;
  border-radius: 2px;
  margin-bottom: 20px;
}
.sup-card.gold .ic {
  background:
    linear-gradient(
      180deg,
      #fff1cf,
      #e9cd92);
  color: var(--gold-deep);
}
.sup-card h3 {
  font-size: 23px;
  line-height: 1.12;
  margin-bottom: 10px;
}
.sup-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.sup-card .go {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--crimson);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.03em;
}
.sup-card:hover .go svg {
  transform: translateX(4px);
}
.dates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 48px;
}
.date-item {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.date-item .d {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.date-item .t {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 500;
}
.pagehead .crumb {
  color: var(--muted-dark);
}
.pagehead .crumb a {
  color: var(--muted-dark);
}
.pagehead .crumb a:hover {
  color: var(--gold-soft);
}
.pagehead {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.pagehead .bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 78% 20%,
      rgba(139, 21, 56, 0.5),
      transparent 60%),
    repeating-linear-gradient(
      135deg,
      #1c1410 0 1px,
      transparent 1px 18px),
    linear-gradient(
      180deg,
      #1a120e,
      #0c0805);
}
.pagehead-inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px var(--gutter) 60px;
}
.pagehead-inner.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}
.pagehead-inner.split .ph {
  aspect-ratio: 4/5;
  border: 1px solid #3a2c22;
}
.wrap.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.wrap.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid #2c2520;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature.narrow {
  gap: 54px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.intro-grid .big {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.intro-grid .big em {
  color: var(--crimson);
}
.intro-body p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.62;
}
.intro-body p + p {
  margin-top: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pagehead h1 {
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.026em;
  color: var(--paper);
  font-weight: 500;
  margin-top: 22px;
  max-width: 16ch;
}
.pagehead h1 em {
  color: var(--gold-soft);
  font-weight: 400;
}
.pagehead .lede {
  font-size: 21px;
  line-height: 1.5;
  color: #c8bdac;
  max-width: 640px;
  margin-top: 30px;
}
.pagehead.gold .bg {
  background:
    radial-gradient(
      ellipse at 78% 20%,
      rgba(184, 146, 74, 0.32),
      transparent 58%),
    repeating-linear-gradient(
      135deg,
      #1c140c 0 1px,
      transparent 1px 18px),
    linear-gradient(
      180deg,
      #1a130b,
      #0c0805);
}
.pagehead-meta {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #2c2520;
}
.pagehead-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pagehead-meta .n {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1;
}
.pagehead-meta .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 6px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.article {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 88px var(--gutter);
}
.article-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 64px;
  align-items: start;
}
.article-aside {
  position: sticky;
  top: 120px;
}
.aside-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.aside-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid var(--line);
}
.aside-nav a {
  padding: 8px 0 8px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: 0.15s;
}
.aside-nav a:hover {
  color: var(--crimson);
  border-left-color: var(--crimson);
}
.prose {
  max-width: 720px;
}
.prose > .lead {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.prose > .lead em {
  color: var(--crimson);
}
.prose p {
  font-size: 18px;
  line-height: 1.66;
  color: var(--ink-soft);
  margin-top: 22px;
}
.prose h3 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 44px;
}
.prose .first::first-letter {
  -webkit-initial-letter: 2.4;
  initial-letter: 2.4;
  font-weight: 600;
  color: var(--crimson);
  margin-right: 10px;
  font-family: var(--serif);
}
.prose-quote {
  margin: 44px 0;
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.prose-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.vtimeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding: 8px 0;
}
.vtimeline::before {
  content: "";
  position: absolute;
  left: 148px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.tl-row {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 54px;
  padding: 20px 0;
}
.tl-row .yr {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--crimson);
  text-align: right;
  line-height: 1.2;
  padding-top: 2px;
}
.tl-row .yr small {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}
.tl-row .body {
  position: relative;
}
.tl-row .body::before {
  content: "";
  position: absolute;
  left: -43px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--crimson);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}
.tl-row.big .body::before {
  background: var(--gold);
  width: 14px;
  height: 14px;
  left: -44px;
}
.tl-row .body h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.tl-row .body p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 8px;
}
.tl-row .body .tag {
  display: inline-block;
  margin-top: 10px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--cream);
  padding: 4px 9px;
  border-radius: 2px;
}
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.faq-cat {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 40px 0 8px;
}
.faq-cat:first-child {
  margin-top: 0;
}
.faq {
  border-top: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 30px;
  width: 14px;
  height: 14px;
  background: linear-gradient(var(--crimson), var(--crimson)) center/14px 2px no-repeat, linear-gradient(var(--crimson), var(--crimson)) center/2px 14px no-repeat;
  transition: 0.2s;
}
.faq[open] summary::after {
  transform: rotate(135deg);
}
.faq summary:hover {
  color: var(--crimson);
}
.faq .ans {
  padding: 0 60px 26px 0;
}
.faq .ans p {
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink-soft);
}
.faq .ans p + p {
  margin-top: 14px;
}
.faq .ans a {
  color: var(--crimson);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper-card);
}
.staff {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.staff .av {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--crimson-deep);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 18px;
}
.staff h4 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}
.staff .role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 8px;
  line-height: 1.5;
}
.staff .det {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.staff .det a {
  color: var(--crimson);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ccard {
  padding: 26px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 3px;
}
.ccard .ic {
  width: 40px;
  height: 40px;
  background: var(--cream);
  color: var(--crimson-deep);
  display: grid;
  place-items: center;
  border-radius: 2px;
  margin-bottom: 16px;
}
.ccard h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
.ccard p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.ccard a {
  color: var(--crimson);
}
.dtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.dtable th,
.dtable td {
  text-align: left;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
}
.dtable thead th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
}
.dtable tbody tr:hover {
  background: #fffaf0;
}
.dtable .pts {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--crimson);
  white-space: nowrap;
}
.dtable td.amt {
  font-family: var(--mono);
  letter-spacing: 0.02em;
  color: var(--ink);
}
.cta-band {
  background: var(--crimson);
  color: var(--paper);
  text-align: center;
}
.cta-band-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.cta-band h2 {
  color: var(--paper);
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.cta-band h2 em {
  color: var(--gold-soft);
}
.cta-band p {
  font-size: 18px;
  color: #f0dcc7;
  margin-top: 18px;
}
.cta-band .row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-on-crimson {
  background: var(--paper);
  color: var(--crimson-deep);
}
.btn-on-crimson:hover {
  background: #fff;
}
.stack-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.stack-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.45;
  align-items: flex-start;
}
.stack-list li b {
  color: var(--ink);
  font-weight: 600;
}
.stack-list .ix {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold-deep);
  padding-top: 3px;
  min-width: 22px;
}
.jackets-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.jcard {
  text-align: center;
  border: 1px solid var(--line);
  background: var(--paper-card);
  border-radius: 3px;
  padding: 22px 14px 20px;
  transition: 0.2s;
}
.jcard:hover {
  background: #fffaf0;
  transform: translateY(-3px);
}
.jcard .coat {
  aspect-ratio: 3/4;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.jcard .coat svg {
  width: 78%;
  height: auto;
}
.jcard .amt {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.jcard .nm {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 7px;
}
.matrix-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-card);
  margin-top: 48px;
}
.matrix {
  border-collapse: collapse;
  width: 100%;
  min-width: 980px;
  font-size: 14px;
}
.matrix th,
.matrix td {
  padding: 13px 12px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.matrix thead th {
  position: sticky;
  top: 0;
  background: var(--crimson);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-right: 1px solid var(--crimson-deep);
  border-bottom: none;
}
.matrix thead th:first-child {
  background: var(--crimson-deep);
}
.matrix th.rowh,
.matrix td.rowh {
  text-align: left;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
  background: var(--paper-warm);
  white-space: nowrap;
  position: sticky;
  left: 0;
  border-right: 1px solid var(--line);
}
.matrix tbody tr:hover td {
  background: #fffaf0;
}
.matrix tbody tr:hover td.rowh {
  background: #f1e7d4;
}
.matrix .q,
.matrix-feed .q {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--crimson);
}
.matrix .none {
  color: var(--line);
  font-size: 13px;
}
.matrix .chk,
.matrix-feed .chk {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  position: relative;
}
.matrix .chk::after,
.matrix-feed .chk::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.matrix .jdot,
.matrix-feed .jdot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1.5px solid var(--crimson);
}
.matrix-note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}
.matrix-feed {
  display: none;
  align-items: flex-start;
  gap: 14px;
  margin-top: 32px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin-inline: calc(var(--gutter) * -1);
  padding: 2px var(--gutter) 14px;
  scroll-padding-left: var(--gutter);
}
.mf-card {
  flex: 0 0 clamp(240px, 78vw, 320px);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-card);
  overflow: hidden;
}
.mf-card.jacket {
  border-color: var(--gold);
}
.mf-head {
  background: var(--crimson);
  padding: 15px 16px 13px;
}
.mf-amt {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1;
}
.mf-lvl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.72;
  margin-top: 6px;
}
.mf-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mf-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line-soft);
}
.mf-row:last-child {
  border-bottom: none;
}
.mf-label {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}
.mf-row .q,
.mf-row .chk,
.mf-row .jdot {
  flex-shrink: 0;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.checks li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.4;
  align-items: flex-start;
}
.checks li .tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.checks li .tick svg {
  width: 12px;
  height: 12px;
}
.checks.on-dark li {
  border-bottom-color: #2c2520;
  color: #e6dcc8;
}
.checks li b {
  color: var(--ink);
  font-weight: 600;
}
.checks.on-dark li b {
  color: var(--paper);
}
.qual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.qual {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 34px;
  position: relative;
}
.qual .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.qual h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
}
.qual h3 em {
  color: var(--crimson);
}
.qual p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.qual .or {
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  z-index: 2;
  border: 3px solid var(--paper-warm);
}
.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper-card);
  margin-top: 48px;
}
.club {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: 0.16s;
  position: relative;
}
.club:hover {
  background: #fffaf0;
}
.club .sport {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.club h4 {
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}
.club .go {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--crimson);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.club:hover .go svg {
  transform: translateX(3px);
}
.costbars {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.costbar {
  display: grid;
  grid-template-columns: 200px 1fr 96px;
  align-items: center;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #2c2520;
}
.costbar .cb-l {
  font-size: 15px;
  color: #e6dcc8;
  font-weight: 500;
}
.costbar .cb-track {
  height: 10px;
  background: #241b14;
  border-radius: 2px;
  overflow: hidden;
}
.costbar .cb-fill {
  height: 100%;
  background:
    linear-gradient(
      90deg,
      var(--gold-deep),
      var(--gold-soft));
  border-radius: 2px;
}
.costbar .cb-v {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--paper);
  text-align: right;
  letter-spacing: 0.02em;
}
.cost-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 2px solid var(--gold);
}
.cost-total .lab {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.cost-total .val {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  color: var(--paper);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.give-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper-card);
  margin-top: 8px;
}
.give {
  padding: 34px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.give .gi {
  width: 46px;
  height: 46px;
  border-radius: 3px;
  background: var(--cream);
  color: var(--crimson-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.give.feature {
  background:
    linear-gradient(
      165deg,
      #8B1538,
      #5E0E25);
  color: var(--paper);
}
.give.feature .gi {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-soft);
}
.give.feature h3,
.give.feature p {
  color: var(--paper);
}
.give .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.give.feature .tag {
  color: var(--gold-soft);
}
.give h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 10px;
}
.give p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.58;
  flex: 1;
}
.give .gact {
  margin-top: 18px;
}
.give .addr {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 4px;
}
.give.feature .addr {
  color: #f0dcc7;
}
.venue {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: start;
  margin-top: 48px;
}
.field {
  position: relative;
  background:
    linear-gradient(
      170deg,
      #1f3a26,
      #16291b);
  border-radius: 6px;
  padding: 28px;
  border: 1px solid #0d1a11;
  overflow: hidden;
}
.field.court {
  background:
    linear-gradient(
      170deg,
      #7a4a1e,
      #5e3514);
}
.lots {
  display: grid;
  gap: 12px;
}
.lot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 3px;
  border-left-width: 4px;
}
.lot .lk {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}
.lot .ld {
  flex: 1;
}
.lot .ld b {
  font-size: 15px;
  font-weight: 600;
  display: block;
}
.lot .ld small {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.lot .llevel {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--crimson);
  font-weight: 500;
  white-space: nowrap;
}
.legend-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}
@media (max-width: 1024px) {
  .support-grid,
  .club-grid,
  .staff-grid,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .jackets-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .article {
    padding: 48px 20px;
  }
  .pagehead-inner {
    padding: 44px 20px 40px;
  }
  .cta-band-inner {
    padding: 54px 20px;
  }
  .pagehead-inner.split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 40px;
  }
  .intro-grid,
  .gjs-inner,
  .gjs-benefits,
  .feature,
  .feature.narrow,
  .venue,
  .checks {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .support-grid,
  .club-grid,
  .staff-grid,
  .contact-cards,
  .give-grid,
  .dates,
  .qual-cards,
  .grid-2 {
    grid-template-columns: 1fr !important;
  }
  .jackets-row {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*=grid-template-columns] {
    grid-template-columns: 1fr !important;
  }
  .qual .or {
    left: 50%;
    top: -12px;
    transform: translateX(-50%);
  }
  .article-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .article-aside {
    position: static;
    top: auto;
  }
  .aside-nav {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    gap: 8px;
  }
  .aside-nav a {
    border-left: none;
    padding: 7px 13px;
    background: var(--paper-card);
    border: 1px solid var(--line);
    border-radius: 2px;
    margin-left: 0;
  }
  .pagehead-meta {
    flex-wrap: wrap;
    gap: 22px 34px;
  }
  .vtimeline::before {
    left: 64px;
  }
  .tl-row {
    grid-template-columns: 56px 1fr;
    gap: 26px;
  }
  .tl-row .yr {
    font-size: 17px;
    text-align: right;
  }
  .tl-row .body::before {
    left: -21px;
  }
  .tl-row.big .body::before {
    left: -22px;
  }
  .costbar {
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
  }
  .costbar .cb-l {
    grid-column: 1/-1;
  }
  .cta-band .row,
  .hero-actions {
    flex-direction: column;
  }
  .cta-band .row .btn,
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .sec-head p,
  .lede,
  .pagehead .lede {
    font-size: 18px;
  }
  .prose p {
    font-size: 17px;
  }
  .matrix-scroll {
    display: none;
  }
  .matrix-feed {
    display: flex;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}
.container--sm {
  max-width: 640px;
}
.container--lg {
  max-width: 1400px;
}
.container--full {
  max-width: none;
  padding: 0;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: 104px 0;
}
.section.warm {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.tight {
  padding: 80px 0;
}
.section.dark h2 em {
  color: var(--gold-soft);
}
@media (max-width: 768px) {
  .section {
    padding: 52px 0;
  }
  .section.tight {
    padding: 44px 0;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
    max-width: 100%;
  }
}
.container.fluid {
  max-width: 100%;
  padding: 0 1rem;
}
@media (max-width: 480px) {
  .container.fluid {
    padding: 0 0.75rem;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .section-header {
    margin-bottom: 3rem;
    padding: 0 0.75rem;
  }
}
.section-header h1,
.section-header h2 {
  font-family:
    "Brandon Grotesque",
    "Futura",
    "Trebuchet MS",
    sans-serif;
  color: #e2e8f0;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .section-header h1,
  .section-header h2 {
    margin-bottom: 0.75rem;
  }
}
.section-header h1 {
  font-size: 3rem;
}
@media (max-width: 480px) {
  .section-header h1 {
    font-size: 1.875rem;
  }
}
.section-header h2 {
  font-size: 2.25rem;
}
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
}
.section-header p {
  font-size: 1.25rem;
  color: #94a3b8;
  line-height: 1.625;
  margin: 0;
}
@media (max-width: 480px) {
  .section-header p {
    font-size: 1rem;
  }
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
@media (max-width: 480px) {
  .text-center-mobile {
    text-align: center !important;
  }
  .text-left-mobile {
    text-align: left !important;
  }
}

/* src/styles/henson-tokens.css */
:root {
  --crimson: #8B1538;
  --crimson-deep: #5E0E25;
  --crimson-ink: #3a0a18;
  --ink: #14110E;
  --ink-soft: #2a2520;
  --paper: #F7F3EC;
  --paper-warm: #EEE5D2;
  --paper-card: #FFFEFA;
  --cream: #E8DCC3;
  --gold: #B8924A;
  --gold-soft: #D9BB7A;
  --gold-deep: #8A6A2E;
  --muted: #6e6358;
  --muted-dark: #a89e8d;
  --line: #d9cfbf;
  --line-soft: #e9e0d0;
  --success: #3a7d50;
  --success-soft: #7cd28d;
  --danger: #dc5050;
  --serif:
    "Source Serif 4",
    "Iowan Old Style",
    Georgia,
    serif;
  --sans:
    "Figtree",
    system-ui,
    -apple-system,
    sans-serif;
  --mono:
    "JetBrains Mono",
    ui-monospace,
    "SF Mono",
    monospace;
  --t-hero: clamp(48px, 9vw, 118px);
  --t-display: clamp(40px, 5vw, 72px);
  --t-h1: 54px;
  --t-h2: 42px;
  --t-h3: 30px;
  --t-h4: 20px;
  --t-lede: 19px;
  --t-body: 17px;
  --t-small: 14px;
  --t-caption: 13px;
  --t-kicker: 11.5px;
  --t-label: 11px;
  --lh-tight: 0.95;
  --lh-snug: 1.15;
  --lh-body: 1.55;
  --track-tight: -0.025em;
  --track-wide: 0.22em;
  --r-xs: 1px;
  --r-sm: 2px;
  --r-md: 3px;
  --r-lg: 4px;
  --r-pill: 32px;
  --bd: 1px solid var(--line);
  --bd-soft: 1px solid var(--line-soft);
  --bd-ink: 1px solid var(--ink);
  --bd-dark: 1px solid #2c2520;
  --bd-dashed-gold: 2px dashed var(--gold);
  --shadow-pop: 0 10px 30px rgba(139,21,56,.35);
  --shadow-panel: 0 24px 60px rgba(20,17,14,.25);
  --shadow-cluster: 0 4px 16px rgba(139,21,56,.30);
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --wrap: 1320px;
  --gutter: 48px;
  --ease: cubic-bezier(.2,.6,.2,1);
  --dur-fast: .15s;
  --dur: .18s;
  --dur-slow: .35s;
}
@media (max-width:1024px) {
  :root {
    --gutter:32px ;
  }
}
@media (max-width:768px) {
  :root {
    --gutter:20px ;
  }
}
.ds-h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--t-h1);
  line-height: var(--lh-snug);
  letter-spacing: var(--track-tight);
  color: var(--ink);
}
.ds-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--ink);
}
.ds-h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--t-h3);
  line-height: var(--lh-snug);
  color: var(--ink);
}
.ds-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--t-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--track-tight);
}
.ds-em {
  font-style: italic;
  font-weight: 400;
  color: var(--crimson);
}
.ds-em-dark {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
}
.ds-body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: var(--ink-soft);
}
.ds-lede {
  font-family: var(--sans);
  font-size: var(--t-lede);
  line-height: var(--lh-body);
  color: var(--ink-soft);
}
.ds-kicker {
  font-family: var(--mono);
  font-size: var(--t-kicker);
  font-weight: 500;
  letter-spacing: var(--track-wide);
  text-transform: uppercase;
  color: var(--crimson);
}
.ds-label {
  font-family: var(--mono);
  font-size: var(--t-label);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
