:root {
    --bg-dark: #0b0b10;
    --bg-light: #f7f3ef;
    --accent: #f77b2b; /* sunset orange */
    --accent-alt: #1f8a4c; /* subtle green */
    --text-main: #111111;
    --text-light: #f7f7f7;
    --max-width: 1100px;
    --radius-lg: 14px;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
  }

  /* Layout helpers */

  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-light {
    background: var(--bg-light);
    color: #1b1b1b;
  }

  .section-dark {
    background: #12121a;
    color: var(--text-light);
  }

  .section h2 {
    margin-top: 0;
    font-size: 2rem;
  }

  .section-intro {
    max-width: 650px;
  }

  .two-column {
    display: grid;
    gap: 2.5rem;
  }

  @media (min-width: 768px) {
    .two-column {
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      align-items: center;
    }
  }

  /* Header */

  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(10, 10, 16, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
  }

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

  .logo-image {
    width: 44px;        /* adjust if you want it bigger/smaller */
    height: 44px;
    border-radius: 8px; /* optional – soft corners */
    margin-right: 0.75rem;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
  }

  /* You can keep your existing .logo-main / .logo-tagline styles,
     or use these if you want the colors to match the logo: */

  .logo-main {
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--accent);
  }

  .logo-tagline {
    font-size: 0.8rem;
    opacity: 0.85;
    color: #d6d6d6;
  }

  .nav a {
    color: #e3e3e3;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

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

  @media (max-width: 640px) {
    .header-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .nav a {
      margin-left: 0;
      margin-right: 1.2rem;
    }
  }

  /* Hero */

  .hero {
    position: relative;
    height: min(75vh, 600px);
    color: var(--text-light);
    overflow: hidden;
    background: #000;
  }

  .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transform: scale(1.03);
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      130deg,
      rgba(247, 123, 43, 0.4),
      rgba(13, 149, 82, 0.4)
    );
    mix-blend-mode: soft-light;
  }

  .hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 0.9rem;
  }

  .hero p {
    font-size: 1.05rem;
    max-width: 32rem;
    margin-bottom: 1.5rem;
    color: #f3f3f3;
  }

  .hero-logo-mark {
    position: absolute;
    right: 6%;
    /* bottom: -40px; */
    top: 10%;
    opacity: 0.12;
    pointer-events: none;
  }

  .hero-logo-mark img {
    width: clamp(180px, 24vw, 260px);
    display: block;
  }

  /* Buttons */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-decoration: none;
  }

  .btn-primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-alt));
    color: #fff;
    box-shadow: var(--shadow-soft);
  }

  .btn-primary:hover {
    filter: brightness(1.05);
  }

  /* About */

  .about-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
  }

  .bullets {
    padding-left: 1.2rem;
  }

  .bullets li {
    margin-bottom: 0.35rem;
  }

  /* Set list */

  .setlist-grid {
    display: grid;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .setlist-grid h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }

  .setlist-grid ul {
    padding-left: 1.1rem;
  }

  .setlist-grid li {
    margin-bottom: 0.25rem;
  }

  .note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #c7c7c7;
  }

  /* Photos */

  .photo-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .photo-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    display: block;
  }

  @media (min-width: 640px) {
    .photo-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  /* Contact */

  .contact-layout {
    align-items: flex-start;
  }

  .contact-form {
    background: rgba(14, 14, 22, 0.9);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    color: #e4e4e4;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.6rem 0.7rem;
    border-radius: 8px;
    border: 1px solid #3c3c4f;
    background: #05050a;
    color: #f8f8f8;
    font: inherit;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
  }

  .contact-form button {
    margin-top: 0.4rem;
  }

  .form-note {
    font-size: 0.8rem;
    color: #c5c5c5;
    margin-top: 0.5rem;
  }

  /* Footer */

  .site-footer {
    background: #05050a;
    color: #9a9a9a;
    font-size: 0.8rem;
    padding: 1rem 0;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
