:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --text: #f4f1ec;
  --muted: rgba(244, 241, 236, 0.7);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #d9b97e;
  --radius: 12px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body.jetset-body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Didot", "Bodoni 72", "Garamond", "Times New Roman", serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.jetset-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.jetset-wordmark {
  letter-spacing: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.jetset-logo-link {
  display: flex;
  align-items: center;
}

.jetset-logo {
  max-height: 36px;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
}

.jetset-logo-link:hover .jetset-logo {
  opacity: 0.88;
}

.jetset-toggler {
  border: 1px solid var(--border);
}

.jetset-offcanvas {
  background: var(--surface);
  color: var(--text);
}

.jetset-menu-link {
  padding: 0.6rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
}

main {
  padding-top: 2.5rem;
}

.jetset-hero {
  padding: 3rem 0 5rem;
}

.jetset-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.jetset-display {
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  line-height: 1.1;
  margin: 0.6rem 0 1.2rem;
}

.jetset-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32rem;
}

.btn-jetset-primary {
  background: var(--accent);
  border: none;
  color: #111;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-jetset-primary:hover {
  background: #f0d59f;
  color: #111;
}

.btn-jetset-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
}

.btn-jetset-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.jetset-media-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: none;
}

.jetset-media-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem 0;
}

.jetset-pill {
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16rem;
}

.jetset-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.jetset-media-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  margin-top: 1rem;
}

.jetset-img {
  display: block;
  width: 100%;
  height: auto;
}

.jetset-media-body {
  padding: 1.5rem;
}

.jetset-media-body h3 {
  margin-bottom: 0.6rem;
}

.jetset-media-body p {
  color: var(--muted);
}

.jetset-inline-link {
  font-size: 0.85rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--accent);
}

.jetset-featured-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.jetset-featured-meta-row .jetset-meta {
  min-width: 0;
}

.jetset-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.jetset-section-title {
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.jetset-section-subtitle {
  color: var(--muted);
  max-width: 36rem;
}

.jetset-scroll {
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 0.5rem;
  scrollbar-color: var(--accent) transparent;
}

.jetset-scroll::-webkit-scrollbar {
  height: 6px;
}

.jetset-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.jetset-scroll-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  padding-bottom: 0.6rem;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.jetset-event-card {
  min-width: 240px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.jetset-event-card h3 {
  margin: 0;
}

.jetset-event-date {
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.jetset-event-location {
  font-size: 0.95rem;
  color: var(--muted);
}

.jetset-event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
}

.jetset-event-card:hover {
  border-color: rgba(217, 185, 126, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.jetset-tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--muted);
}

.jetset-search {
  display: flex;
  gap: 0.8rem;
  margin: 1.6rem 0 1.4rem;
}

.jetset-input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.jetset-input::placeholder {
  color: var(--muted);
}

.jetset-input:focus {
  background: var(--surface);
  color: var(--text);
  border-color: rgba(217, 185, 126, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(217, 185, 126, 0.18);
}

.jetset-muted-strong {
  color: rgba(244, 241, 236, 0.85);
}

.jetset-join-card {
  padding-top: 2rem;
}

.jetset-location-list {
  display: grid;
  gap: 0.8rem;
}

.jetset-location-item {
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.jetset-explore-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 1.8rem;
}

.jetset-explore-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: var(--surface-2);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.jetset-explore-card h4 {
  margin-bottom: 0.4rem;
}

.jetset-explore-link {
  display: block;
  color: inherit;
}

.jetset-explore-link:hover {
  border-color: rgba(217, 185, 126, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.jetset-explore-link:hover .jetset-meta {
  color: rgba(217, 185, 126, 0.8);
}

.jetset-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
}

.jetset-filter-chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--muted);
}

.jetset-filter-chip.is-active {
  border-color: var(--accent);
  color: var(--accent);
}

.jetset-spotlight-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr);
  gap: 1.6rem;
  align-items: center;
}

.jetset-spotlight-media {
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  max-height: 280px;
}

.jetset-spotlight-feature-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  max-height: 280px;
}

.jetset-spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.jetset-spotlight-cta {
  align-self: flex-start;
}

.jetset-spotlight-excerpt {
  color: var(--muted);
}

.jetset-spotlight-feature-block {
  margin-bottom: 1.8rem;
}

.jetset-spotlight-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.jetset-spotlight-story {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 170px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.jetset-spotlight-thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: #101010;
  position: relative;
}

.jetset-spotlight-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.jetset-spotlight-story-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.jetset-spotlight-story .jetset-event-date {
  color: rgba(217, 185, 126, 0.75);
  letter-spacing: 0.24rem;
}

.jetset-spotlight-story h4 {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jetset-spotlight-story:hover {
  border-color: rgba(217, 185, 126, 0.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.2);
}

.jetset-spotlight-story:hover .jetset-spotlight-thumb::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2));
}

.jetset-spotlight-story .jetset-spotlight-excerpt {
  opacity: 0.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jetset-mini-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.jetset-site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.5rem;
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.5rem;
  color: var(--muted);
}

.jetset-site-footer-copy {
  font-size: 0.9rem;
}

.jetset-site-footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding: 0;
}

.jetset-site-footer-links a {
  color: var(--muted) !important;
}

.jetset-site-footer-links a:visited {
  color: var(--muted) !important;
}

.jetset-site-footer-links a:hover {
  color: var(--accent);
}

.jetset-legal-page {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.75;
}

.jetset-legal-header {
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.jetset-legal-page h1 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.jetset-legal-last-updated {
  color: var(--muted);
  margin-bottom: 0;
}

.jetset-legal-section {
  margin-bottom: 1.7rem;
}

.jetset-legal-section h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: 0.45rem;
}

.jetset-legal-section p {
  margin-bottom: 0.7rem;
  color: rgba(244, 241, 236, 0.92);
}

.jetset-legal-section ul {
  margin: 0 0 0.7rem;
  padding-left: 1.35rem;
}

.jetset-legal-section li {
  margin-bottom: 0.35rem;
}

@media (max-width: 991.98px) {
  .jetset-search {
    flex-direction: column;
  }

  .jetset-spotlight-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .jetset-media-img {
    height: 240px;
  }

  .jetset-featured-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .jetset-logo {
    max-height: 28px;
  }

  .jetset-spotlight-media {
    max-height: 200px;
  }

  .jetset-spotlight-feature-image {
    max-height: 200px;
  }

  .jetset-spotlight-secondary {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.6rem;
    scrollbar-color: var(--accent) transparent;
  }

  .jetset-spotlight-secondary::-webkit-scrollbar {
    height: 6px;
  }

  .jetset-spotlight-secondary::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 999px;
  }

  .jetset-spotlight-story {
    min-width: 240px;
  }

  .jetset-mini-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .jetset-site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.admin-body {
  background: var(--bg);
}

.admin-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 2rem 1.5rem;
}

.admin-brand {
  margin-bottom: 2rem;
}

.admin-wordmark {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-size: 0.7rem;
  color: var(--muted);
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.admin-nav-link {
  padding: 0.5rem 0.4rem;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--text);
}

.admin-nav-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  background: var(--bg);
}

.admin-title {
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
}

.admin-main {
  padding: 2rem;
}

.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid var(--border);
}

.admin-table th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  font-size: 0.7rem;
}

.admin-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
}

.admin-form label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.7rem;
}

.admin-pill {
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--muted);
}

@media (max-width: 992px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
  }
}
