/* ============================================================
   HEARTLAND GOLD — CUSTOM CSS
   Lab Grown vs. Natural Diamonds Page
   Scope: .hg-diamonds-page
   Paste into: Punchmark Site Manager > Design/Theme Settings > Global CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── Variables ── */
.hg-diamonds-page {
  --hg-green: #355E3B;
  --hg-green-dark: #263F28;
  --hg-green-light: #4a7d51;
  --hg-gold: #C8963C;
  --hg-gold-light: #e0b060;
  --hg-red: #8B1A1A;
  --hg-cream: #FDF8F0;
  --hg-cream-dark: #F3EBD8;
  --hg-brown: #2C2213;
  --hg-gray: #6B6560;
  --hg-gray-light: #f7f3ee;
  --hg-white: #ffffff;
  --hg-font-heading: 'Playfair Display', Georgia, serif;
  --hg-font-body: 'Lato', sans-serif;
  font-family: var(--hg-font-body);
  color: var(--hg-brown);
  background-color: var(--hg-white);
}

/* ── Utilities ── */
.hg-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.hg-hero {
  background-color: var(--hg-green);
  padding: 80px 24px 72px;
  text-align: center;
}

.hg-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hg-eyebrow {
  font-family: var(--hg-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8963C !important;
  margin-bottom: 16px;
}

.hg-hero-title {
  font-family: var(--hg-font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hg-hero-sub {
  font-family: var(--hg-font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Intro Band ── */
.hg-intro-band {
  background-color: var(--hg-cream);
  padding: 44px 24px;
  border-bottom: 1px solid var(--hg-cream-dark);
}

.hg-intro-text {
  font-family: var(--hg-font-heading);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 21px);
  color: #2C2213 !important;
  text-align: center;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Section Base ── */
.hg-section {
  padding: 72px 24px;
  background-color: var(--hg-white);
}

.hg-section-alt {
  background-color: var(--hg-gray-light);
}

.hg-section-title {
  font-family: var(--hg-font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: #355E3B !important;
  text-align: center;
  margin-bottom: 12px;
}

.hg-section-sub {
  font-size: 16px;
  color: var(--hg-gray);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Facts Row ── */
.hg-facts-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hg-fact-card {
  background: var(--hg-cream);
  border-top: 3px solid var(--hg-gold);
  border-radius: 4px;
  padding: 32px 28px;
  flex: 1 1 280px;
  max-width: 340px;
}

.hg-fact-icon {
  color: #C8963C !important;
  font-size: 20px;
  margin-bottom: 14px;
}

.hg-fact-card h3 {
  font-family: var(--hg-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #355E3B !important;
  margin-bottom: 10px;
}

.hg-fact-card p {
  font-size: 15px;
  color: var(--hg-gray);
  line-height: 1.65;
  margin: 0;
}

/* ── Comparison Table ── */
.hg-compare-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid #e2dbd0;
  box-shadow: 0 2px 12px rgba(44,34,19,0.07);
}

.hg-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--hg-white);
}

.hg-compare-table thead tr {
  background-color: #355E3B;
}

.hg-compare-table th,
.hg-compare-table thead th,
.hg-compare-table thead th * {
  padding: 18px 20px;
  font-family: var(--hg-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff !important;
  text-align: left;
}

.hg-col-feature { width: 22%; }
.hg-col-natural { width: 39%; }
.hg-col-lab     { width: 39%; }

.hg-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hg-badge-natural {
  background-color: #C8963C !important;
  color: #2C2213 !important;
}

.hg-badge-lab {
  background-color: rgba(255,255,255,0.18);
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.4);
}

.hg-compare-table td {
  padding: 16px 20px;
  color: var(--hg-brown);
  line-height: 1.55;
  vertical-align: top;
  border-bottom: 1px solid #ede7dc;
}

.hg-row-alt td {
  background-color: #faf6ef;
}

.hg-feature-label {
  font-weight: 700;
  color: #355E3B !important;
  font-size: 14px;
}

.hg-cell-highlight-natural {
  color: #355E3B !important;
  font-weight: 700 !important;
}

.hg-cell-highlight-lab {
  color: #6B6560 !important;
  font-style: italic !important;
}

/* ── Two Column Layout ── */
.hg-two-col {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hg-col-text {
  flex: 1 1 380px;
}

.hg-col-text .hg-eyebrow {
  text-align: left;
}

.hg-col-title {
  font-family: var(--hg-font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: #355E3B !important;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hg-col-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--hg-brown);
  margin-bottom: 16px;
}

.hg-col-aside {
  flex: 0 1 320px;
}

/* ── Callout Box ── */
.hg-callout-box {
  background-color: #355E3B;
  border-radius: 6px;
  padding: 36px 32px;
  position: sticky;
  top: 24px;
}

.hg-callout-box,
.hg-callout-box * {
  color: #ffffff !important;
}

.hg-callout-label {
  font-family: var(--hg-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C8963C !important;
  margin-bottom: 16px;
}

.hg-callout-text {
  font-family: var(--hg-font-heading);
  font-style: italic;
  font-size: 17px;
  color: #ffffff !important;
  line-height: 1.65;
  margin-bottom: 20px;
}

.hg-callout-attr {
  font-size: 13px;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 300;
  margin: 0;
}

/* ── Persona Cards ── */
.hg-persona-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hg-persona-card {
  flex: 1 1 320px;
  padding: 36px 32px;
  border-radius: 6px;
}

.hg-persona-natural {
  background-color: #355E3B;
}

.hg-persona-natural,
.hg-persona-natural * {
  color: #ffffff !important;
}

.hg-persona-lab {
  background-color: var(--hg-white);
  border: 2px solid #ddd5c8;
}

.hg-persona-lab,
.hg-persona-lab * {
  color: #2C2213 !important;
}

.hg-persona-title {
  font-family: var(--hg-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hg-persona-natural .hg-persona-title {
  color: #C8963C !important;
}

.hg-persona-lab .hg-persona-title {
  color: #355E3B !important;
}

.hg-persona-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hg-persona-list li {
  font-size: 15px;
  line-height: 1.55;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.hg-persona-natural .hg-persona-list li {
  color: rgba(255,255,255,0.9) !important;
  border-bottom-color: rgba(255,255,255,0.15);
}

.hg-persona-lab .hg-persona-list li {
  color: #2C2213 !important;
  border-bottom-color: #ede7dc;
}

.hg-persona-list li:last-child {
  border-bottom: none;
}

.hg-persona-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.hg-persona-natural .hg-persona-list li::before {
  background-color: #C8963C !important;
}

.hg-persona-lab .hg-persona-list li::before {
  background-color: #355E3B !important;
}

/* ── CTA Band ── */
.hg-cta-band {
  background-color: var(--hg-cream);
  border-top: 3px solid var(--hg-gold);
  padding: 64px 24px;
}

.hg-cta-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.hg-cta-title {
  font-family: var(--hg-font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  color: #355E3B !important;
  margin-bottom: 12px;
}

.hg-cta-sub {
  font-size: 15px;
  color: var(--hg-gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}

.hg-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.hg-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--hg-font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hg-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.hg-btn-primary {
  background-color: #355E3B;
  color: #ffffff !important;
}

.hg-btn-outline {
  background-color: transparent;
  color: #355E3B !important;
  border: 2px solid #355E3B;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hg-section { padding: 52px 16px; }
  .hg-hero { padding: 56px 16px 48px; }
  .hg-two-col { flex-direction: column; gap: 36px; }
  .hg-col-aside { width: 100%; flex: unset; }
  .hg-callout-box { position: static; }
  .hg-cta-inner { flex-direction: column; gap: 28px; }
  .hg-cta-btns { flex-direction: row; flex-wrap: wrap; }
  .hg-compare-table { font-size: 13px; }
  .hg-compare-table td,
  .hg-compare-table th { padding: 12px 14px; }
}