:root {
  --alc-navy: #0b1727;
  --alc-ink: #112236;
  --alc-gold: #c69c55;
  --alc-gold-bright: #e8c88c;
  --alc-mist: #eef3f8;
}

body {
  background-color: #f8fafc;
  color: var(--alc-ink);
}

::selection {
  background: var(--alc-gold);
  color: #ffffff;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.mesh-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  backdrop-filter: blur(18px);
}

.elevated-card {
  box-shadow: 0 24px 60px rgba(11, 23, 39, 0.12);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--alc-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--alc-gold);
}

.section-tag-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--alc-gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-tag-dark::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--alc-gold-bright);
}

.soft-border {
  border: 1px solid rgba(17, 34, 54, 0.08);
}

.gold-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(198, 156, 85, 0), rgba(198, 156, 85, 0.8), rgba(198, 156, 85, 0));
}

.nav-current {
  color: var(--alc-gold-bright) !important;
}

.text-link {
  font-weight: 600;
  color: var(--alc-ink);
  text-decoration: underline;
  text-decoration-color: var(--alc-gold);
  text-underline-offset: 3px;
  transition: color 150ms ease;
}

.text-link:hover {
  color: var(--alc-gold);
}

.text-link-dark {
  font-weight: 600;
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--alc-gold-bright);
  text-underline-offset: 3px;
  transition: color 150ms ease;
}

.text-link-dark:hover {
  color: var(--alc-gold-bright);
}

.faq-item {
  border: 1px solid rgba(17, 34, 54, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 32px rgba(11, 23, 39, 0.05);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 1.4rem;
  color: var(--alc-ink);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 1.4rem 1.35rem;
  color: #475569;
  line-height: 1.7;
}

.faq-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border: 1px solid rgba(17, 34, 54, 0.12);
  color: var(--alc-gold);
  font-size: 1.25rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-marker {
  transform: rotate(45deg);
}

.story-copy p {
  margin-bottom: 1rem;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

.page-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}

.location-stripe {
  background: linear-gradient(135deg, rgba(198, 156, 85, 0.16), rgba(17, 34, 54, 0.04));
}

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

@media (max-width: 640px) {
  .faq-item summary {
    padding: 1.15rem 1.1rem;
  }

  .faq-answer {
    padding: 0 1.1rem 1.15rem;
  }
}
