/* ============================================================
   LAYOUT — Ale & Octane Charleston
   ============================================================ */

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--size-body);
}

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

/* ── Section Base ── */
section {
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-secondary);
}

.section-surface {
  background-color: var(--color-surface);
}

/* ── Eyebrow Label ── */
.eyebrow {
  font-family: var(--font-secondary);
  font-size: var(--size-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: 0.75rem;
}

/* ── Section Headings ── */
.section-title {
  font-family: var(--font-heading);
  font-size: var(--size-section-h2);
  font-weight: var(--fw-xblack);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

/* ── Two-column grid ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Four-column card grid ── */
.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .four-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Utility ── */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
