/* =========
   Base
   ========= */

   :root {
    --bg: #050508;
    --bg-elevated: #101018;
    --bg-soft: #151520;
    --border-subtle: #27273a;
    --accent: #f5b45c;
    --accent-soft: rgba(245, 180, 92, 0.14);
    --accent-strong: #ffcf7a;
    --text: #f7f3ea;
    --muted: #a7a0b3;
    --danger: #ff5c73;
  
    --radius-lg: 18px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.7);
  
    --nav-h: 72px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, #141224 0, #050508 55%, #020205 100%);
    color: var(--text);
  }
  
  /* =========
     Layout
     ========= */
  
  .container {
    width: min(1120px, 100% - 32px);
    margin: 0 auto;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section.alt {
    background: radial-gradient(circle at top, #141428 0, #050508 55%);
  }
  
  .section-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: 0.04em;
    margin: 0 0 10px;
  }
  
  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
  }
  
  .lead {
    font-size: 1.03rem;
    line-height: 1.6;
    color: var(--muted);
  }
  
  .muted {
    color: var(--muted);
    font-size: 0.98rem;
  }
  
  .mt-md {
    margin-top: 24px;
  }
  
  .mt-lg {
    margin-top: 40px;
  }
  
  /* Grid helpers */
  
  .grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: start;
  }
  
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  
  .cards-row {
    margin-top: 24px;
  }
  
  @media (max-width: 900px) {
    .grid-2 {
      grid-template-columns: 1fr;
    }
    .grid-3 {
      grid-template-columns: 1fr;
    }
  }
  
  /* =========
     Header / Nav
     ========= */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5, 5, 10, 0.95), rgba(5, 5, 10, 0.7), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  
  .brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(245, 180, 92, 0.45);
  }
  
  .brand-text {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text);
  }
  
  .nav {
    position: relative;
  }
  
  .nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-list a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 2px;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  }
  
  .nav-list a:hover {
    color: var(--accent-strong);
    border-color: var(--accent-strong);
    transform: translateY(-1px);
  }
  
  /* Mobile nav toggle */
  
  .nav-toggle {
    display: none;
    width: 32px;
    height: 26px;
    padding: 0;
    border: none;
    background: transparent;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: #f7f3ea;
  }
  
  @media (max-width: 768px) {
    .nav-toggle {
      display: flex;
    }
  
    .nav-list {
      position: absolute;
      right: 0;
      top: calc(100% + 10px);
      flex-direction: column;
      align-items: flex-end;
      background: rgba(5, 5, 10, 0.98);
      padding: 14px 18px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
      display: none;
    }
  
    .nav-list.open {
      display: flex;
    }
  }
  
  /* =========
     Hero
     ========= */
  
  .hero {
    position: relative;
    min-height: 80vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
  }
  
  .hero-bg {
    position: absolute;
    inset: -10%;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1) contrast(1.05) brightness(0.7);
    will-change: transform;
    z-index: -2;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top, rgba(245, 180, 92, 0.16), transparent 55%),
      linear-gradient(to bottom, rgba(5, 5, 10, 0.8), #050508 72%);
    z-index: -1;
  }
  
  .hero-inner {
    padding: 96px 0 72px;
  }
  
  .hero-content {
    max-width: 540px;
  }
  
  .hero-logo {
    width: clamp(90px, 18vw, 150px);
    height: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.7));
  }
  
  .hero h1 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .hero-sub {
    margin: 0 0 20px;
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 520px;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }
  
  .hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-strong);
  }
  
  /* =========
     Band / Experience
     ========= */
  
  .band {
    position: relative;
    overflow: hidden;
  }
  
  .band .hero-bg {
    filter: saturate(1.05) contrast(1.06) brightness(0.55);
  }
  
  .band-overlay {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top, rgba(245, 180, 92, 0.14), transparent 60%),
      linear-gradient(to bottom, rgba(5, 5, 12, 0.96), #050508 90%);
    z-index: -1;
  }
  
  .band-inner {
    position: relative;
  }
  
  .band-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  
  .band-card {
    background: rgba(10, 10, 18, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 16px 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  }
  
  .band-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  .band-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
  }
  
  @media (max-width: 900px) {
    .band-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* =========
     Cards
     ========= */
  
  .card {
    background: radial-gradient(circle at top left, rgba(245, 180, 92, 0.16), transparent 50%),
                radial-gradient(circle at bottom right, rgba(67, 50, 140, 0.32), transparent 58%),
                #0a0a12;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 20px 20px;
    box-shadow: var(--shadow-soft);
  }
  
  .card.inset {
    background: radial-gradient(circle at top left, rgba(245, 180, 92, 0.1), transparent 55%),
                #050508;
    border-color: rgba(255, 255, 255, 0.08);
  }
  
  .card-title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  .membership-card {
    position: relative;
    min-height: 220px;
  }
  
  .membership-card.featured {
    border-color: var(--accent);
    box-shadow: 0 22px 60px rgba(245, 180, 92, 0.25);
  }
  
  .price-line {
    margin: 8px 0 12px;
    color: var(--muted);
  }
  
  .event-card p {
    margin: 0 0 6px;
  }
  
  .event-meta {
    font-size: 0.9rem;
    color: var(--muted);
  }
  
  /* =========
     Buttons / Pills
     ========= */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.16s ease, box-shadow 0.16s ease;
    white-space: nowrap;
  }
  
  .btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #1a150d;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.7);
  }
  
  .btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.8);
  }
  
  .btn-ghost {
    background: transparent;
    color: var(--accent-strong);
    border-color: rgba(245, 180, 92, 0.6);
  }
  
  .btn-ghost:hover {
    background: rgba(245, 180, 92, 0.08);
  }
  
  .btn.full {
    width: 100%;
  }
  
  .btn-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  /* Pills */
  
  .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
  }
  
  .pill-soft {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
  }
  
  .pill-highlight {
    border-color: var(--accent);
    color: var(--accent-strong);
  }
  
  /* =========
     Lists
     ========= */
  
  .ticks {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
  }
  
  .ticks li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.96rem;
    color: var(--muted);
  }
  
  .ticks li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: var(--accent-strong);
  }
  
  .ticks.small li {
    font-size: 0.92rem;
  }
  
  /* =========
     Forms
     ========= */
  
  .form {
    display: grid;
    gap: 14px;
  }
  
  .form-row {
    display: grid;
    gap: 6px;
  }
  
  .form-row.dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  
  label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
  }
  
  input,
  textarea,
  select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(4, 4, 8, 0.9);
    color: var(--text);
    padding: 9px 10px;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(245, 180, 92, 0.6);
    background: rgba(8, 8, 14, 0.96);
  }
  
  textarea {
    resize: vertical;
  }
  
  .form-note {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: var(--muted);
  }
  
  @media (max-width: 700px) {
    .form-row.dual {
      grid-template-columns: 1fr;
    }
  }
  
  /* Membership section */
  
  .membership-cta {
    margin-top: 26px;
    text-align: center;
    color: var(--muted);
  }
  
  /* =========
     Gallery
     ========= */
  
  .gallery {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  
  .gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.18s ease, filter 0.18s ease;
  }
  
  .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.75));
    opacity: 0;
    transition: opacity 0.18s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
  }
  
  .gallery-item:hover::after {
    opacity: 1;
  }
  
  /* Gallery overlay */
  
  .gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 10, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
  }
  
  .gallery-overlay.open {
    display: flex;
  }
  
  .gallery-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.85);
  }
  
  .gallery-overlay .close-btn {
    position: absolute;
    top: 18px;
    right: 22px;
    border: none;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    font-size: 20px;
    color: #050508;
    background: var(--accent-strong);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
  }
  
  /* =========
     Facts / Definition List
     ========= */
  
  .facts {
    margin: 0;
  }
  
  .facts dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-top: 10px;
  }
  
  .facts dd {
    margin: 2px 0 0;
    font-size: 0.96rem;
  }
  
  /* =========
     Events CTA
     ========= */
  
  .events-cta {
    margin-top: 28px;
    text-align: center;
    color: var(--muted);
  }
  
  /* =========
     Map
     ========= */
  
  .map-embed {
    padding: 10px;
  }
  
  /* =========
     Footer
     ========= */
  
  .site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0 24px;
    background: radial-gradient(circle at top, rgba(245, 180, 92, 0.16), #020205 70%);
  }
  
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--muted);
  }
  
  .site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .site-footer a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
  }
  
  .site-footer a:hover {
    color: var(--accent-strong);
  }
  
  /* =========
     Responsive tweaks
     ========= */
  
  @media (max-width: 600px) {
    .hero-inner {
      padding-top: 88px;
      padding-bottom: 56px;
    }
    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
    }
    .gallery {
      grid-template-columns: 1fr;
    }
  }
  
button, .btn, input, select {
  min-height: 44px;
  font-size: 16px; /* very important for iPhone */
}
