/*
Theme Name: Distrijazz
Theme URI: https://www.distrijazz.com
Author: Distrijazz
Description: Official Distrijazz website theme
Version: 1.2
*/

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

  :root {
    --bg: #FAF8F4;
    --bg2: #F2EFE8;
    --bg3: #EAE5DB;
    --ink: #1A1510;
    --ink2: #3D342A;
    --muted: #8A7E72;
    --gold: #9A6F1A;
    --gold-light: #B8841F;
    --gold-pale: #F5EDD8;
    --rule: rgba(154,111,26,0.18);
    --border: rgba(26,21,16,0.1);
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 3rem;
    border-bottom: 0.5px solid var(--border);
    background: rgba(250,248,244,0.94);
    backdrop-filter: blur(12px);
  }

  .nav-logo-img {
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-cta {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    border: 0.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }

  .nav-cta:hover {
    background: var(--gold);
    color: #fff;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 6rem;
    position: relative;
    overflow: hidden;
    border-bottom: 0.5px solid var(--border);
    text-align: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 60% at 75% 35%, rgba(154,111,26,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 35% 45% at 15% 75%, rgba(154,111,26,0.04) 0%, transparent 50%);
  }

  .hero-rule {
    position: absolute;
    top: 0; bottom: 0;
    right: 40%;
    width: 0.5px;
    background: linear-gradient(to bottom, transparent 5%, var(--rule) 25%, var(--rule) 75%, transparent 95%);
  }

  .hero-label {
    position: absolute;
    top: 9rem;
    right: 3rem;
    writing-mode: vertical-rl;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 0.5px;
    background: var(--gold);
  }

  .hero-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 0.5px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4.5rem, 10vw, 9rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 2.5rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }

  .btn-primary {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    background: var(--ink);
    color: var(--bg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    font-weight: 400;
  }

  .btn-primary:hover { background: var(--ink2); }

  .btn-outline {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    background: transparent;
    color: var(--ink);
    border: 0.5px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-outline:hover { border-color: var(--ink); }

  .btn-ghost {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s, color 0.2s;
  }

  .btn-ghost:hover { gap: 0.9rem; color: var(--ink); }

  .hero-stats {
    position: absolute;
    right: 3rem;
    bottom: 6rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
  }

  .stat-item { text-align: right; }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.25rem;
  }

  .stat-divider {
    width: 36px;
    height: 0.5px;
    background: var(--rule);
    align-self: flex-end;
  }

  /* ─── TICKER ─── */
  .ticker {
    border-bottom: 0.5px solid var(--border);
    padding: 0.85rem 0;
    overflow: hidden;
    background: var(--bg2);
  }

  .ticker-inner {
    display: flex;
    gap: 4rem;
    animation: ticker 32s linear infinite;
    white-space: nowrap;
  }

  .ticker-item {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .ticker-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── SECTIONS ─── */
  .section { padding: 7rem 3rem; }
  .section-alt { background: var(--bg2); }

  .section-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .section-tag {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-tag::before {
    content: '';
    display: block;
    width: 22px;
    height: 0.5px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0em;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  .section-body {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.2rem;
  }

  /* ─── VINYL ─── */
  .vinyl-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vinyl-svg {
    width: min(380px, 100%);
    animation: spin 20s linear infinite;
    filter: drop-shadow(0 8px 32px rgba(26,21,16,0.1));
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* ─── SERVICES ─── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 0.5px solid var(--border);
    margin-top: 4rem;
  }

  .service-card {
    padding: 2.5rem 2rem;
    border: 0.5px solid var(--border);
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    transition: width 0.35s;
  }

  .service-card:hover::after { width: 100%; }
  .service-card:hover { background: var(--gold-pale); }

  .service-num {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.9rem;
    line-height: 1.25;
  }

  .service-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
  }

  /* ─── LABELS ─── */
  .labels-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }

  .labels-alpha {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 0.5px solid var(--border);
  }

  .alpha-group {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0;
    border-bottom: 0.5px solid var(--border);
    align-items: baseline;
  }

  .alpha-group:last-child { border-bottom: none; }

  .alpha-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    padding: 1rem 0 1rem 1.25rem;
    line-height: 1;
    border-right: 0.5px solid var(--border);
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  .alpha-labels {
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0;
  }

  .alpha-labels span {
    font-size: 0.82rem;
    color: var(--ink2);
    line-height: 1.9;
  }

  .alpha-labels span::after {
    content: ' ·';
    color: var(--muted);
    margin-right: 0.45rem;
  }

  .alpha-labels span:last-child::after { content: ''; margin-right: 0; }

  /* ─── MERCH ─── */
  .merch-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .merch-card {
    padding: 2.5rem 2rem;
    border: 0.5px solid var(--border);
    background: var(--bg);
  }

  .merch-card-main { padding: 3rem 2.5rem; }

  .merch-badge {
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid var(--gold);
    padding: 0.28rem 0.65rem;
    margin-bottom: 1.5rem;
  }

  .merch-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .merch-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
  }

  .merch-secondary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* ─── CONTACT ─── */
  .contact-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-info { display: flex; flex-direction: column; }

  .contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 0.5px solid var(--border);
  }

  .contact-item:first-child { border-top: 0.5px solid var(--border); }

  .contact-icon {
    width: 32px;
    height: 32px;
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .contact-label {
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.3rem;
  }

  .contact-value {
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.6;
  }

  .contact-form { display: flex; flex-direction: column; gap: 1rem; }

  .form-group { display: flex; flex-direction: column; gap: 0.35rem; }

  .form-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .form-input {
    background: var(--bg);
    border: 0.5px solid var(--border);
    color: var(--ink);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.78rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    font-weight: 300;
  }

  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: var(--muted); }

  textarea.form-input {
    height: 110px;
    resize: vertical;
  }

  /* ─── FOOTER ─── */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg2);
  }

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

  .footer-legal {
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.04em;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--ink); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow { animation: fadeUp 0.6s 0.1s both; }
  .hero-title   { animation: fadeUp 0.6s 0.2s both; }
  .hero-actions { animation: fadeUp 0.6s 0.35s both; }
  .hero-stats   { animation: fadeUp 0.6s 0.5s both; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 960px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { padding: 0 1.5rem 4.5rem; }
    .hero-stats, .hero-rule, .hero-label { display: none; }
    .section { padding: 4.5rem 1.5rem; }
    .section-grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .merch-grid { grid-template-columns: 1fr; }
    .contact-split { grid-template-columns: 1fr; gap: 3rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }