:root {
  --ink: #08131a;
  --ink-soft: #102028;
  --forest: #143d34;
  --jade: #1f6b58;
  --gold: #c9a45c;
  --gold-bright: #e0c07a;
  --ivory: #f4efe6;
  --ivory-muted: rgba(244, 239, 230, 0.72);
  --line: rgba(201, 164, 92, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 2px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --nav-height: 88px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ivory);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(31, 107, 88, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201, 164, 92, 0.12), transparent 50%),
    linear-gradient(180deg, #0a161d 0%, var(--ink) 40%, #061018 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), border-color var(--transition), background var(--transition), transform var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  position: relative;
  z-index: 100;
  background: linear-gradient(180deg, rgba(8, 19, 26, 0.96) 0%, rgba(8, 19, 26, 0.88) 100%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-navbar {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  min-height: var(--nav-height);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--forest), #0b241f);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 1.1rem;
  box-shadow: inset 0 0 18px rgba(201, 164, 92, 0.15);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ivory);
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.navbar-nav .nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory-muted) !important;
  padding: 0.55rem 0.7rem !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--ivory) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.mobile-toggle {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.55rem 0.65rem;
  background: transparent;
  box-shadow: none;
}

.mobile-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 164, 92, 0.25);
}

.mobile-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.mobile-toggle .hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-bright);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-banner {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
  z-index: -2;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 19, 26, 0.88) 0%, rgba(8, 19, 26, 0.55) 48%, rgba(8, 19, 26, 0.35) 100%),
    linear-gradient(0deg, rgba(8, 19, 26, 0.92) 0%, rgba(8, 19, 26, 0.25) 42%, rgba(8, 19, 26, 0.45) 100%);
}

.hero-content {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5.5rem;
  z-index: 1;
}

.hero-panel {
  max-width: 640px;
  animation: riseIn 1s var(--transition) both;
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ivory-muted);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 0.95rem 1.55rem;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #1a1408 !important;
  border-color: transparent;
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, var(--gold-bright) 0%, #f0d59a 100%);
  color: #1a1408 !important;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory) !important;
  border-color: rgba(244, 239, 230, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--gold);
  color: var(--gold-bright) !important;
}

.btn-ghost-light {
  background: transparent;
  color: var(--ivory) !important;
  border-color: rgba(244, 239, 230, 0.4);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus {
  border-color: var(--gold-bright);
  color: var(--gold-bright) !important;
}

.hero-scroll {
  position: absolute;
  right: 1.5rem;
  bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  animation: softPulse 2.4s ease-in-out infinite;
}

.section {
  padding: 5.5rem 0;
}

.signature-strip {
  background: linear-gradient(180deg, rgba(16, 32, 40, 0.85), rgba(8, 19, 26, 0.4));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signature-item {
  height: 100%;
  padding: 1.75rem 0.25rem;
  border-top: 1px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.signature-item:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.signature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  background: rgba(20, 61, 52, 0.35);
}

.signature-item h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.signature-item p {
  color: var(--ivory-muted);
  font-weight: 300;
  margin: 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.section-eyebrow.light,
.section-title.light,
.section-text.light {
  color: var(--ivory);
}

.section-text.light {
  color: var(--ivory-muted);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.section-text {
  color: var(--ivory-muted);
  font-weight: 300;
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--ivory);
  font-weight: 300;
}

.feature-list i {
  color: var(--gold);
  margin-top: 0.3rem;
  font-size: 0.8rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.text-link:hover {
  color: var(--ivory);
  gap: 0.8rem;
}

.experience-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background:
    linear-gradient(145deg, rgba(20, 61, 52, 0.45), rgba(8, 19, 26, 0.7)),
    radial-gradient(circle at top right, rgba(201, 164, 92, 0.18), transparent 55%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.experience-stat {
  padding: 1.5rem 1.1rem;
  border: 1px solid rgba(244, 239, 230, 0.08);
  background: rgba(8, 19, 26, 0.35);
}

.experience-stat:last-child {
  grid-column: 1 / -1;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.cta-band {
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(31, 107, 88, 0.35), transparent 65%),
    linear-gradient(180deg, #102820 0%, #0a1a16 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band .section-text {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.media-split {
  position: relative;
}

.media-split .split-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.media-split .split-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}

.media-split .split-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(201, 164, 92, 0.12), transparent 45%);
}

.split-copy {
  padding: 1rem 0;
}

.games-grid .game-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--ink-soft);
}

.games-grid .game-tile img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.games-grid .game-tile:hover img {
  transform: scale(1.06);
}

.game-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(0deg, rgba(8, 19, 26, 0.95) 0%, rgba(8, 19, 26, 0.2) 100%);
}

.game-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}

.game-overlay p {
  margin: 0;
  color: var(--ivory-muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.moments-band {
  padding-top: 0;
}

.moments-stage {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.moments-stage img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.moments-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem 0 2.75rem;
  background: linear-gradient(0deg, rgba(8, 19, 26, 0.92) 10%, transparent 100%);
}

.vip-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(20, 61, 52, 0.4), rgba(8, 19, 26, 0.75));
  padding: 2rem 1.75rem;
  height: 100%;
}

.vip-panel h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.vip-panel p {
  color: var(--ivory-muted);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.vip-panel .panel-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}

.disclaimer-band {
  background: rgba(16, 32, 40, 0.9);
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
}

.disclaimer-band .disclaimer-box {
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  background: rgba(8, 19, 26, 0.55);
}

.disclaimer-band h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.disclaimer-band p {
  color: var(--ivory-muted);
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 52rem;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at top left, rgba(31, 107, 88, 0.25), transparent 55%),
    linear-gradient(180deg, #0c1a20 0%, var(--ink) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--ivory-muted);
  font-weight: 300;
  max-width: 36rem;
  margin: 0;
}

.legal-content {
  padding: 3.5rem 0 5rem;
}

.legal-content article {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 2.25rem 0 0.85rem;
  color: var(--gold-bright);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ivory-muted);
  font-weight: 300;
}

.legal-content ul {
  padding-left: 1.15rem;
  margin-bottom: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.legal-content .updated {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.site-footer {
  padding: 4rem 0 1.75rem;
  background: #060e13;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 1.1rem;
}

.footer-blurb {
  color: var(--ivory-muted);
  font-weight: 300;
  font-size: 0.95rem;
  max-width: 22rem;
  margin: 1rem 0 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--ivory);
}

.footer-links,
.footer-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-meta li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: var(--ivory-muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ivory-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-meta i {
  color: var(--gold);
  margin-top: 0.25rem;
  width: 1rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--ivory-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-legal a {
  color: var(--ivory-muted);
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--gold-bright);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
}

@media (max-width: 991.98px) {
  :root {
    --nav-height: 76px;
  }

  .navbar-collapse {
    margin-top: 0.85rem;
    padding: 0.75rem 0 0.35rem;
    border-top: 1px solid var(--line);
  }

  .navbar-nav .nav-link {
    padding: 0.8rem 0.2rem !important;
  }

  .navbar-nav .nav-link::after {
    left: 0;
    right: auto;
    width: 2rem;
    bottom: 0.45rem;
  }

  .hero-content {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .brand-name {
    font-size: 1.35rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  .experience-frame {
    padding: 1rem;
  }

  .media-split .split-image,
  .moments-stage img,
  .games-grid .game-tile img {
    min-height: 260px;
    height: 260px;
  }

  .moments-stage {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-panel,
  .hero-scroll,
  .signature-item,
  a,
  .btn {
    animation: none !important;
    transition: none !important;
  }

  .hero-media {
    transform: none;
  }
}

body.age-locked {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse at center, rgba(20, 61, 52, 0.45), transparent 55%),
    rgba(4, 10, 14, 0.92);
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-dialog {
  width: min(100%, 440px);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #12262c 0%, #0a161c 100%);
  box-shadow: var(--shadow);
  padding: 2rem 1.75rem;
  text-align: center;
}

.age-gate-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 1.25rem;
}

.age-gate-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.age-gate-dialog p {
  color: var(--ivory-muted);
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.age-gate-actions .btn {
  width: 100%;
}

.menu-board {
  border: 1px solid var(--line);
  background: rgba(16, 32, 40, 0.55);
  padding: 1.75rem 1.5rem;
  height: 100%;
}

.menu-board h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-item h4 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}

.menu-item p {
  margin: 0;
  color: var(--ivory-muted);
  font-size: 0.88rem;
  font-weight: 300;
}

.menu-item .price {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.contact-tile {
  border: 1px solid var(--line);
  padding: 1.75rem 1.4rem;
  height: 100%;
  background: rgba(8, 19, 26, 0.45);
}

.contact-tile .tile-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.contact-tile h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.contact-tile p {
  color: var(--ivory-muted);
  font-weight: 300;
  margin-bottom: 1rem;
}

.gallery-grid .gallery-item {
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--ivory-muted);
  font-weight: 300;
}

.info-list i {
  color: var(--gold);
  margin-top: 0.3rem;
}
