/* ── Reset & Base ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--hc-black);
  color: var(--hc-text);
  font-family: var(--hc-font-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Override GP container — force full-bleed */
body .site,
body .site-content,
body .grid-container,
body .site-content .content-area {
  background-color: var(--hc-black);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.inside-article,
.site-main,
.content-area,
.grid-container.container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
body .separate-containers .inside-article,
body .inside-article {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
body .separate-containers .site-main > *,
body .separate-containers .content-area {
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hc-font-heading);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hc-white);
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--hc-orange);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--hc-orange-hover);
}

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

/* ── Containers ────────────────────────────────────────── */
.hc-container {
  max-width: var(--hc-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hc-section {
  padding: 60px 0;
}

.hc-section--dark {
  background-color: var(--hc-charcoal);
}

.hc-section--darker {
  background-color: var(--hc-black);
}

/* ── Buttons ───────────────────────────────────────────── */
.hc-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--hc-font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--hc-radius);
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}

.hc-btn--orange {
  background-color: var(--hc-orange);
  color: var(--hc-white);
  border-color: var(--hc-orange);
}
.hc-btn--orange:hover {
  background-color: var(--hc-orange-hover);
  border-color: var(--hc-orange-hover);
  color: var(--hc-white);
}

.hc-btn--outline {
  background: transparent;
  color: var(--hc-white);
  border-color: var(--hc-white);
}
.hc-btn--outline:hover {
  background-color: var(--hc-white);
  color: var(--hc-black);
}

.hc-btn--full {
  display: block;
  width: 100%;
}

.hc-btn--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

/* ── Utility ───────────────────────────────────────────── */
.hc-text-center { text-align: center; }
.hc-text-muted  { color: var(--hc-text-muted); }
.hc-mt-0  { margin-top: 0; }
.hc-mb-0  { margin-bottom: 0; }
.hc-mb-1  { margin-bottom: 0.5rem; }
.hc-mb-2  { margin-bottom: 1rem; }
.hc-mb-3  { margin-bottom: 1.5rem; }

/* ── GP full-bleed override ────────────────────────────── */
body .site-content,
body .grid-container.container,
body .separate-containers .inside-article,
body .content-area {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.entry-content {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
body .entry-content,
body .entry-content p,
body .entry-content span,
body .entry-content li {
  color: #f0f0f0;
}
body .entry-content a:not(.hc-btn) {
  color: #e87a1e;
}
body .entry-content a:not(.hc-btn):hover {
  color: #d06a14;
}
body .separate-containers .inside-article {
  border: none;
  background-color: transparent;
  box-shadow: none;
}

/* ── Value Props Grid ──────────────────────────────────── */
.hc-value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  .hc-section { padding: 40px 0; }
  .hc-value-props {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
