:root {
  --bg-1: #080b12;
  --bg-2: #111827;
  --card: rgba(20, 27, 40, 0.86);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f6f2e9;
  --muted: #d2c6b1;
  --brand: #ff5b2f;
  --brand-2: #ffca76;
  --vip: #00d2b6;
  --shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 91, 47, 0.25), transparent 36%),
    radial-gradient(circle at 90% 12%, rgba(0, 210, 182, 0.18), transparent 34%),
    linear-gradient(165deg, var(--bg-1) 0%, var(--bg-2) 46%, #1a1f2c 100%);
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.18) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.045;
  z-index: -1;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.7rem);
}

h2 {
  font-size: clamp(1.65rem, 4vw, 2.9rem);
}

p {
  margin-top: 0;
}

.page-wrap {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.3rem 0 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem clamp(1rem, 4vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 15, 0.74);
  backdrop-filter: blur(8px);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 1.45rem;
  color: #ffd9cb;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.site-header nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: #f2ebdd;
  opacity: 0.88;
}

.site-header nav a.is-current {
  color: #fff0b2;
}

.site-header .vip-link {
  color: #a6ffe7;
}

.hero,
.guide-hero,
.cta-band,
section {
  margin: 1.15rem 0 2.5rem;
}

.hero,
.guide-hero,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(255, 91, 47, 0.18), rgba(13, 18, 30, 0.86) 45%, rgba(0, 210, 182, 0.12));
  padding: clamp(1rem, 3vw, 2rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  color: #ffc4ae;
}

.lead {
  margin-top: 0.9rem;
  color: #f2ebdd;
  max-width: 860px;
}

.meta-note,
.meta-strip {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #f8f3eb;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  background: rgba(14, 18, 29, 0.75);
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #2a1209;
  border-color: transparent;
}

.btn-vip {
  background: var(--vip);
  color: #072923;
  border-color: transparent;
}

.inline-link {
  color: #9af6e2;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.82rem;
}

.section-head {
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.stat-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem;
}

.stat-grid div {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: rgba(10, 14, 24, 0.62);
  padding: 0.66rem;
}

.stat-grid strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.stat-grid span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filters {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

input[type="search"] {
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: rgba(14, 19, 32, 0.92);
  color: #fff;
  padding: 0.8rem 0.9rem;
  width: 100%;
  font-size: 0.95rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 22, 35, 0.8);
  color: #f9f3e6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}

.chip.active {
  background: var(--brand-2);
  color: #2d1c0b;
  border-color: transparent;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(16, 22, 35, 0.82);
}

th,
td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 0.7rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.86rem;
}

th {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffd8c8;
  font-size: 0.73rem;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0.95rem;
}

.venue-card,
.guide-card,
.video-card,
.news-item,
.social-link,
.guide-aside,
.chart-card {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--card);
  box-shadow: var(--shadow);
}

.venue-card {
  overflow: hidden;
}

.venue-media {
  position: relative;
  aspect-ratio: 16 / 10;
}

.venue-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-rank {
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  border-radius: 999px;
  padding: 0.2rem 0.52rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 10, 18, 0.78);
}

.venue-body {
  padding: 0.82rem;
}

.venue-body h3 {
  font-size: 1.42rem;
}

.venue-loc,
.venue-address {
  margin: 0.2rem 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.venue-description {
  margin: 0.34rem 0;
  font-size: 0.87rem;
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.12rem 0.48rem;
  font-size: 0.72rem;
}

.venue-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.venue-actions a {
  color: #95f1df;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.guide-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.9rem;
}

.guide-card {
  padding: 0.85rem;
}

.guide-kicker {
  margin: 0;
  color: #ffc6b0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.guide-card h3 {
  margin-top: 0.35rem;
  font-size: 1.38rem;
}

.guide-card h3 a {
  text-decoration: none;
}

.guide-card p {
  margin: 0.35rem 0;
  font-size: 0.88rem;
  color: #f2ecdf;
}

.guide-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.9rem;
}

.hub-card {
  padding: 0.85rem;
}

.hub-card h3 {
  margin-top: 0.35rem;
  font-size: 1.35rem;
}

.hub-card h3 a {
  text-decoration: none;
}

.hub-card p {
  margin: 0.35rem 0;
  font-size: 0.86rem;
  color: #f4eee2;
}

.hub-meta,
.hub-neighborhoods {
  color: var(--muted);
  font-size: 0.78rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0.9rem;
}

.blog-card {
  overflow: hidden;
}

.blog-media {
  display: block;
  aspect-ratio: 16 / 10;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-body {
  padding: 0.75rem;
}

.blog-meta {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.money-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
  background: rgba(0, 210, 182, 0.22);
  color: #8bffe8;
  border: 1px solid rgba(0, 210, 182, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.62rem;
  vertical-align: middle;
}

.blog-body h3 {
  font-size: 1.3rem;
}

.blog-body h3 a {
  text-decoration: none;
}

.blog-body p {
  margin: 0.32rem 0;
  font-size: 0.87rem;
}

.blog-tax {
  color: #ffd3c3;
  font-size: 0.78rem;
}

.tax-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.tax-chip {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(17, 22, 35, 0.86);
  text-decoration: none;
  color: #f6efe2;
  font-size: 0.74rem;
  padding: 0.34rem 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tax-chip span {
  color: #bfe7db;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.news-item {
  padding: 0.75rem 0.9rem;
}

.news-item a {
  text-decoration: none;
  font-weight: 700;
}

.news-item p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.9rem;
}

.video-card {
  padding: 0.75rem;
}

.video-wrap {
  border-radius: 0.72rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 0.55rem;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h4 {
  font-size: 1.14rem;
}

.video-card p {
  margin: 0.2rem 0 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.video-card a {
  color: #8ef3df;
  text-decoration: none;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.insta-tile {
  text-decoration: none;
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(17, 21, 33, 0.9);
  display: grid;
}

.insta-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.insta-tile span {
  display: block;
  padding: 0.42rem 0.55rem;
  font-size: 0.73rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffd4c1;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
}

.social-link {
  text-decoration: none;
  display: grid;
  gap: 0.16rem;
  padding: 0.66rem 0.75rem;
}

.social-link span {
  color: #ffc9b3;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
}

.social-link strong {
  font-size: 1rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 0.78rem;
  background: rgba(15, 20, 31, 0.84);
  margin-bottom: 0.6rem;
  padding: 0.75rem 0.85rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1rem;
}

.guide-aside {
  padding: 0.8rem;
  align-self: start;
}

.guide-aside h3 {
  font-size: 1.3rem;
}

.guide-article {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
  background: rgba(15, 19, 31, 0.85);
}

.guide-article p {
  margin-bottom: 1rem;
  color: #f4efe3;
}

.blog-post-content {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(15, 19, 31, 0.85);
  padding: clamp(0.8rem, 2.5vw, 1.25rem);
}

.blog-post-content p,
.blog-post-content li {
  color: #f4efe3;
}

.blog-post-content a {
  color: #9beedb;
}

.blog-post-content img {
  border-radius: 0.7rem;
  margin: 1rem auto;
  max-height: 600px;
  object-fit: cover;
}

.blog-post-content iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 0.6rem;
}

.blog-post-content iframe[src*="instagram.com"] {
  min-height: 760px;
  background: rgba(0, 0, 0, 0.35);
}

.blog-post-content figure {
  margin: 1rem 0;
}

.blog-post-content figcaption {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-tax-line {
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.blog-tax-line a {
  color: #9deedb;
  text-decoration: none;
}

.guide-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.guide-image-card {
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  overflow: hidden;
  background: rgba(15, 19, 30, 0.84);
  margin: 0;
}

.guide-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.guide-image-card figcaption {
  padding: 0.5rem 0.6rem;
  color: var(--muted);
  font-size: 0.77rem;
}

.chart-card {
  margin: 0;
  padding: 0.75rem;
}

.chart-card figcaption {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.chart-card svg {
  width: 100%;
  height: auto;
}

.guide-video {
  max-width: 860px;
}

.video-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.next-guides {
  margin: 0;
  padding-left: 1.1rem;
}

.next-guides li {
  margin-bottom: 0.35rem;
}

.next-guides a {
  color: #9aeedb;
  text-decoration: none;
}

.centered-link {
  text-align: center;
  margin-top: 0.9rem;
}

.site-footer {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: #d4c9b5;
}

.site-footer div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: #9ef1df;
  text-decoration: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js-reveal .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .page-wrap {
    width: min(1200px, calc(100% - 1.15rem));
  }

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

  .hero-actions {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .blog-post-content iframe[src*="instagram.com"] {
    min-height: 620px;
  }
}
