/* ==========================================================================
   Harrison Coins — main.css  v1.1
   - Darker green primary (#0d211a)
   - More prominent gold (#e4c47e, matches logo)
   - Gold accent underlines on section titles
   - Buy band flipped to gold for visual punch
   - Gold dividers, gold hero accent
   ========================================================================== */

/* ----- Reset (minimal) -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--hc-color-link); text-decoration: none; transition: color 0.15s ease; }
a:hover, a:focus { color: var(--hc-color-link-hover); text-decoration: underline; }

/* ----- Base typography -------------------------------------------------- */
:root {
  --hc-font-heading: 'Playfair Display', Georgia, serif;
  --hc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --hc-color-primary: #0d211a;
  --hc-color-primary-dark: #050f0c;
  --hc-color-accent: #cba14e;
  --hc-color-accent-dark: #a67c2e;
  --hc-color-accent-soft: #e6cb8f;
  --hc-color-bg: #faf6ed;
  --hc-color-bg-alt: #f0e4c5;
  --hc-color-text: #1a1a1a;
  --hc-color-link: #0d211a;
  --hc-color-link-hover: #a67c2e;
  --hc-color-sale: #7a2e2e;

  --hc-space-1: 0.25rem;
  --hc-space-2: 0.5rem;
  --hc-space-3: 0.75rem;
  --hc-space-4: 1rem;
  --hc-space-5: 1.5rem;
  --hc-space-6: 2rem;
  --hc-space-8: 3rem;
  --hc-space-10: 4rem;
  --hc-space-12: 5rem;
  --hc-space-16: 7rem;

  --hc-radius-sm: 4px;
  --hc-radius-md: 8px;
  --hc-radius-lg: 16px;

  --hc-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --hc-shadow-md: 0 2px 8px rgba(0,0,0,0.08);
  --hc-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --hc-shadow-gold: 0 4px 16px rgba(212,173,95,0.25);

  --hc-container-max: 1200px;
  --hc-container-narrow: 760px;
  --hc-gutter: 1rem;
}

body {
  font-family: var(--hc-font-body);
  color: var(--hc-color-text);
  background-color: var(--hc-color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hc-font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--hc-color-primary);
  margin: 0 0 var(--hc-space-4);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 var(--hc-space-4); }

/* ----- Layout primitives ------------------------------------------------ */
.hc-container {
  max-width: var(--hc-container-max);
  margin-inline: auto;
  padding-inline: var(--hc-gutter);
}
.hc-narrow { max-width: var(--hc-container-narrow); }
.hc-section { padding-block: var(--hc-space-12); }
.hc-section-header { text-align: center; margin-bottom: var(--hc-space-8); }

/* Decorative gold underline beneath section titles. */
.hc-section-title {
  margin: 0 0 var(--hc-space-3);
  display: inline-block;
  position: relative;
  padding-bottom: var(--hc-space-3);
}
.hc-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--hc-color-accent);
  border-radius: 2px;
}
.hc-section-title-inline {
  margin-top: var(--hc-space-10);
  padding-bottom: var(--hc-space-3);
  position: relative;
  display: inline-block;
}
.hc-section-title-inline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--hc-color-accent);
  border-radius: 2px;
}
.hc-section-sub { color: var(--hc-color-text); opacity: 0.85; max-width: 620px; margin: var(--hc-space-3) auto 0; }
.hc-section-footer { text-align: center; margin-top: var(--hc-space-8); }

.hc-eyebrow {
  font-family: var(--hc-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hc-color-accent-dark);
  margin: 0 0 var(--hc-space-3);
}

/* Reusable gold rule. */
.hc-gold-rule {
  height: 3px;
  background: var(--hc-color-accent);
  border: 0;
  margin: 0;
}

/* ----- Accessibility helpers ------------------------------------------- */
.screen-reader-text {
  position: absolute !important; clip: rect(1px,1px,1px,1px);
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link {
  position: absolute; top: -100px; left: 0; background: var(--hc-color-primary);
  color: #fff; padding: var(--hc-space-3) var(--hc-space-5); z-index: 1000;
}
.skip-link:focus { top: 0; }

/* ----- Buttons --------------------------------------------------------- */
.hc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hc-space-2);
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  font-family: var(--hc-font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: var(--hc-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none !important;
  text-align: center;
  letter-spacing: 0.01em;
}
.hc-btn-primary {
  background: var(--hc-color-primary);
  color: #fff !important;
  border-color: var(--hc-color-primary);
}
.hc-btn-primary:hover, .hc-btn-primary:focus {
  background: var(--hc-color-primary-dark);
  border-color: var(--hc-color-primary-dark);
  color: var(--hc-color-accent) !important;
}
.hc-btn-accent {
  background: var(--hc-color-accent);
  color: var(--hc-color-primary) !important;
  border-color: var(--hc-color-accent);
  box-shadow: var(--hc-shadow-gold);
}
.hc-btn-accent:hover, .hc-btn-accent:focus {
  background: var(--hc-color-accent-dark);
  border-color: var(--hc-color-accent-dark);
  color: #fff !important;
}
.hc-btn-outline {
  background: transparent;
  color: var(--hc-color-primary) !important;
  border-color: var(--hc-color-primary);
}
.hc-btn-outline:hover, .hc-btn-outline:focus {
  background: var(--hc-color-primary);
  color: var(--hc-color-accent) !important;
}
.hc-btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.6);
}
.hc-btn-ghost:hover, .hc-btn-ghost:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--hc-color-accent);
  color: var(--hc-color-accent) !important;
}
.hc-btn-large { padding: 1rem 2.25rem; font-size: 1.1rem; }

/* ----- Header (now GOLD to match logo) -------------------------------- */
.hc-header {
  background: var(--hc-color-accent);
  border-bottom: 4px solid var(--hc-color-primary);
  position: sticky;
  top: 0;
  z-index: 100;
}
.hc-utility-bar {
  background: var(--hc-color-primary);
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  display: none;
}
.hc-utility-bar a { color: rgba(255,255,255,0.95); }
.hc-utility-bar a:hover { color: var(--hc-color-accent); }
.hc-utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--hc-space-2);
}
.hc-utility-sep { margin-inline: var(--hc-space-3); opacity: 0.5; color: var(--hc-color-accent); }

.hc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--hc-space-4);
  gap: var(--hc-space-4);
}
.hc-branding .hc-site-title {
  font-family: var(--hc-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hc-color-primary);
  letter-spacing: 0.02em;
}
/* Logo image — sits on gold header, blends with logo's gold background. */
.hc-branding img, .hc-branding .custom-logo, .hc-branding .custom-logo-link img {
  max-height: 80px;
  width: auto;
  display: block;
}

/* Menu toggle (mobile). */
.hc-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.hc-menu-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--hc-color-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hc-menu-toggle[aria-expanded="true"] .hc-menu-bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hc-menu-toggle[aria-expanded="true"] .hc-menu-bar:nth-child(2) { opacity: 0; }
.hc-menu-toggle[aria-expanded="true"] .hc-menu-bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.hc-primary-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--hc-color-accent);
  border-bottom: 4px solid var(--hc-color-primary);
  box-shadow: var(--hc-shadow-md);
}
.hc-primary-nav.is-open { display: block; }
.hc-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hc-nav-menu li { border-bottom: 1px solid rgba(13,33,26,0.12); }
.hc-nav-menu li:last-child { border-bottom: 0; }
.hc-nav-menu a {
  display: block;
  padding: var(--hc-space-4) var(--hc-gutter);
  color: var(--hc-color-primary);
  font-weight: 600;
}
.hc-nav-menu a:hover, .hc-nav-menu .current-menu-item a {
  background: var(--hc-color-accent-dark);
  color: var(--hc-color-primary-dark);
  text-decoration: none;
}

.hc-header-actions {
  display: flex;
  align-items: center;
  gap: var(--hc-space-4);
  margin-left: auto;
}
.hc-cart-link {
  display: inline-flex;
  align-items: center;
  gap: var(--hc-space-2);
  padding: var(--hc-space-2);
  color: var(--hc-color-primary);
  position: relative;
}
.hc-cart-link:hover { color: var(--hc-color-primary-dark); text-decoration: none; }
.hc-cart-count {
  background: var(--hc-color-primary);
  color: var(--hc-color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.hc-cart-count[data-count="0"] { display: none; }

/* ----- Hero ------------------------------------------------------------ */
/* ----- Announcement bar ---------------------------------------------- */
.hc-announce {
  background: linear-gradient(90deg, var(--hc-color-primary-dark) 0%, var(--hc-color-primary) 50%, var(--hc-color-primary-dark) 100%);
  border-top: 1px solid var(--hc-color-accent-dark);
  border-bottom: 1px solid var(--hc-color-accent-dark);
}
.hc-announce-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  max-width: var(--hc-container-max);
  margin: 0 auto;
  padding: 0.45rem var(--hc-gutter);
  text-align: center;
  text-decoration: none;
}
a.hc-announce-inner:hover .hc-announce-item { color: #fff; }
.hc-announce-item {
  color: var(--hc-color-accent);
  font-family: var(--hc-font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.hc-announce-dot {
  color: var(--hc-color-accent-dark);
  font-size: 0.5rem;
  line-height: 1;
  opacity: 0.85;
}
@media (max-width: 600px) {
  .hc-announce-item { font-size: 0.68rem; letter-spacing: 0.08em; }
  .hc-announce-inner { gap: 0.4rem; }
}

.hc-hero {
  background:
    linear-gradient(135deg, var(--hc-color-primary) 0%, var(--hc-color-primary-dark) 100%);
  color: #fff;
  padding-block: var(--hc-space-16);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,173,95,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212,173,95,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hc-hero-inner {
  text-align: center;
  max-width: 820px;
  position: relative;
  z-index: 1;
}
/* Split layout: text left, framed storefront photo right. */
.hc-hero--split .hc-hero-inner {
  text-align: left;
  max-width: var(--hc-container-max);
  display: flex;
  align-items: center;
  gap: var(--hc-space-10);
  flex-wrap: wrap;
}
.hc-hero--split .hc-hero-text { flex: 1 1 360px; }
.hc-hero--split .hc-hero-eyebrow::before { display: none; }
.hc-hero--split .hc-hero-eyebrow::after { display: none; }
.hc-hero--split .hc-hero-headline { font-size: clamp(2rem, 4vw, 3.1rem); }
.hc-hero--split .hc-hero-subhead { margin-inline: 0; }
.hc-hero--split .hc-hero-ctas { justify-content: flex-start; }
/* The framed photo panel. */
.hc-hero-photo { flex: 1 1 380px; min-width: 280px; }
.hc-hero-photo-frame {
  border: 3px solid var(--hc-color-accent);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0,0,0,0.38);
  line-height: 0;
}
.hc-hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}
.hc-hero-photo-cap {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin: var(--hc-space-3) 0 0;
}
/* Gold accent rule under the headline (shown in split mode). */
.hc-hero-rule { display: none; }
.hc-hero--split .hc-hero-rule {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--hc-color-accent);
  margin: var(--hc-space-4) 0 var(--hc-space-5);
  opacity: 0.9;
}
.hc-hero.has-bg-image::before { display: none; }
.hc-hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hc-color-accent);
  font-weight: 600;
  margin: 0 0 var(--hc-space-5);
  position: relative;
  display: inline-block;
}
.hc-hero-eyebrow::before, .hc-hero-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: var(--hc-color-accent);
}
.hc-hero-eyebrow::before { left: -48px; }
.hc-hero-eyebrow::after { right: -48px; }
.hc-hero-headline {
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin: 0 0 var(--hc-space-5);
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
  line-height: 1.1;
}
.hc-hero-headline-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--hc-color-accent);
  margin: var(--hc-space-5) auto;
  border-radius: 2px;
}
.hc-hero-subhead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  margin: 0 0 var(--hc-space-6);
  max-width: 640px;
  margin-inline: auto;
}
.hc-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-space-3);
  justify-content: center;
}
@media (max-width: 860px) {
  .hc-hero--split .hc-hero-inner { gap: var(--hc-space-6); }
  .hc-hero--split .hc-hero-text { flex: 1 1 100%; text-align: center; }
  .hc-hero--split .hc-hero-eyebrow, .hc-hero--split .hc-hero-ctas { justify-content: center; }
  .hc-hero--split .hc-hero-rule { margin-inline: auto; }
  .hc-hero-photo { flex: 1 1 100%; }
}

/* ----- Three-up cards -------------------------------------------------- */
.hc-threeup { background: var(--hc-color-bg); }
.hc-threeup-grid {
  display: grid;
  gap: var(--hc-space-5);
  grid-template-columns: 1fr;
}
.hc-threeup-card {
  background: #fff;
  border: 1px solid var(--hc-color-bg-alt);
  border-radius: var(--hc-radius-lg);
  padding: var(--hc-space-6);
  text-align: center;
  display: block;
  color: var(--hc-color-text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.hc-threeup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--hc-color-accent);
  border-radius: var(--hc-radius-lg) var(--hc-radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.hc-threeup-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hc-shadow-lg);
  border-color: var(--hc-color-accent);
  text-decoration: none;
}
.hc-threeup-card:hover::before { opacity: 1; }
.hc-threeup-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--hc-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hc-color-accent);
  border-radius: 50%;
  color: var(--hc-color-primary);
  box-shadow: var(--hc-shadow-gold);
}
.hc-threeup-card h2 { font-size: 1.375rem; margin-bottom: var(--hc-space-3); }
.hc-threeup-card p { margin-bottom: var(--hc-space-4); opacity: 0.85; }
.hc-threeup-link {
  color: var(--hc-color-accent-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ----- Featured product grid (homepage strip) ------------------------- */
.hc-featured-coins { background: var(--hc-color-bg-alt); }
.hc-product-grid, ul.products {
  display: grid !important;
  gap: var(--hc-space-5);
  grid-template-columns: repeat(2, 1fr);
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 var(--hc-space-8) !important;
}
.hc-empty-state {
  text-align: center;
  padding: var(--hc-space-10) var(--hc-space-6);
  background: #fff;
  border: 1px dashed var(--hc-color-accent);
  border-radius: var(--hc-radius-lg);
}
.hc-empty-state p { font-size: 1.05rem; margin-bottom: var(--hc-space-5); }
.hc-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-space-3);
  justify-content: center;
  margin-top: var(--hc-space-4);
}

/* ----- Buy band (FLIPPED to gold) ------------------------------------- */
.hc-buy-band {
  background: var(--hc-color-accent);
  color: var(--hc-color-primary);
  position: relative;
}
.hc-buy-band::before, .hc-buy-band::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background: var(--hc-color-primary);
}
.hc-buy-band::before { top: 0; }
.hc-buy-band::after { bottom: 0; }
.hc-buy-band h2 {
  color: var(--hc-color-primary);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: var(--hc-space-4);
}
.hc-buy-band p {
  color: var(--hc-color-primary);
  font-size: 1.05rem;
  opacity: 0.92;
}
.hc-buy-band-inner {
  display: grid;
  gap: var(--hc-space-8);
  grid-template-columns: 1fr;
  align-items: center;
  padding-block: var(--hc-space-4);
}
.hc-buy-band-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--hc-space-3);
  grid-template-columns: 1fr;
}
.hc-buy-band-list li {
  padding-left: var(--hc-space-6);
  position: relative;
  color: var(--hc-color-primary);
  font-weight: 500;
}
.hc-buy-band-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 14px;
  background: var(--hc-color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(13,33,26,0.15);
}
.hc-buy-band-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-space-3);
  margin-top: var(--hc-space-5);
}
/* Override the ghost button on gold band — dark green border on gold reads better. */
.hc-buy-band .hc-btn-ghost {
  color: var(--hc-color-primary) !important;
  border-color: var(--hc-color-primary);
}
.hc-buy-band .hc-btn-ghost:hover {
  background: var(--hc-color-primary);
  color: var(--hc-color-accent) !important;
}
.hc-buy-band .hc-btn-accent {
  background: var(--hc-color-primary);
  color: var(--hc-color-accent) !important;
  border-color: var(--hc-color-primary);
}
.hc-buy-band .hc-btn-accent:hover {
  background: var(--hc-color-primary-dark);
  border-color: var(--hc-color-primary-dark);
  color: #fff !important;
}

/* ----- About snippet --------------------------------------------------- */
.hc-about-snippet { background: var(--hc-color-bg); }
.hc-about-grid {
  display: grid;
  gap: var(--hc-space-8);
  grid-template-columns: 1fr;
  align-items: center;
}
.hc-about-map iframe {
  width: 100%;
  border-radius: var(--hc-radius-lg);
  box-shadow: var(--hc-shadow-md);
  border: 3px solid var(--hc-color-accent);
}
.hc-about-ctas { margin-top: var(--hc-space-5); }

/* ----- eBay band ------------------------------------------------------- */
.hc-ebay-band {
  background: var(--hc-color-primary-dark);
  color: #fff;
  border-top: 4px solid var(--hc-color-accent);
  border-bottom: 4px solid var(--hc-color-accent);
}
.hc-ebay-band h2 { color: var(--hc-color-accent); }
.hc-ebay-band p { color: rgba(255,255,255,0.9); }
.hc-ebay-band .hc-eyebrow { color: var(--hc-color-accent); }
.hc-ebay-inner {
  display: grid;
  gap: var(--hc-space-6);
  grid-template-columns: 1fr;
  align-items: center;
}
.hc-ebay-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: var(--hc-space-3);
}

/* ----- Trust band ------------------------------------------------------ */
.hc-trust-band {
  background: #fff;
  border-top: 1px solid var(--hc-color-bg-alt);
  border-bottom: 1px solid var(--hc-color-bg-alt);
}
.hc-trust-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--hc-space-6);
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
.hc-trust-grid li { padding: var(--hc-space-3); }
.hc-trust-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--hc-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hc-color-accent-dark);
  background: var(--hc-color-bg-alt);
  border-radius: 50%;
  border: 2px solid var(--hc-color-accent);
}
.hc-trust-grid h3 { font-size: 1.05rem; margin-bottom: var(--hc-space-2); color: var(--hc-color-primary); }
.hc-trust-grid p { font-size: 0.9rem; margin: 0; opacity: 0.85; }

/* ----- Page heroes (inner pages) ------------------------------------- */
.hc-page-hero {
  background: linear-gradient(135deg, var(--hc-color-primary) 0%, var(--hc-color-primary-dark) 100%);
  color: #fff;
  padding-block: var(--hc-space-12);
  text-align: center;
  border-bottom: 4px solid var(--hc-color-accent);
}
.hc-page-hero h1 { color: #fff; }
.hc-page-hero .hc-eyebrow { color: var(--hc-color-accent); }
.hc-page-hero .hc-page-lead { color: rgba(255,255,255,0.92); max-width: 680px; margin-inline: auto; font-size: 1.125rem; }
.hc-page-hero-compact { padding-block: var(--hc-space-10); }

.hc-what-we-buy {
  display: grid;
  gap: var(--hc-space-4);
  grid-template-columns: 1fr;
  margin-bottom: var(--hc-space-8);
}
.hc-what-we-buy > div {
  background: #fff;
  border: 1px solid var(--hc-color-bg-alt);
  border-radius: var(--hc-radius-md);
  padding: var(--hc-space-5);
  border-top: 3px solid var(--hc-color-accent);
}
.hc-what-we-buy h3 { font-size: 1.125rem; color: var(--hc-color-primary); margin-bottom: var(--hc-space-2); }
.hc-what-we-buy p { margin: 0; }

.hc-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--hc-space-8);
  display: grid;
  gap: var(--hc-space-5);
  grid-template-columns: 1fr;
}
.hc-steps li {
  background: #fff;
  border-radius: var(--hc-radius-md);
  padding: var(--hc-space-6);
  border: 1px solid var(--hc-color-bg-alt);
  position: relative;
}
.hc-step-num {
  width: 52px;
  height: 52px;
  background: var(--hc-color-accent);
  color: var(--hc-color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--hc-space-4);
  font-family: var(--hc-font-heading);
  box-shadow: var(--hc-shadow-gold);
}
.hc-steps h3 { margin-bottom: var(--hc-space-2); }
.hc-steps p { margin: 0; }

.hc-sell-form-wrap, .hc-contact-form-wrap {
  background: #fff;
  border: 1px solid var(--hc-color-bg-alt);
  border-radius: var(--hc-radius-lg);
  padding: var(--hc-space-6);
  margin-top: var(--hc-space-6);
  border-top: 4px solid var(--hc-color-accent);
}
.hc-visit-invite {
  background: var(--hc-color-accent-soft);
  border-radius: var(--hc-radius-md);
  padding: var(--hc-space-5);
  margin-top: var(--hc-space-6);
  text-align: center;
  border-left: 4px solid var(--hc-color-accent);
}

/* ----- Visit & Contact pages ----------------------------------------- */
.hc-visit-grid, .hc-contact-grid {
  display: grid;
  gap: var(--hc-space-8);
  grid-template-columns: 1fr;
  margin-bottom: var(--hc-space-8);
}
.hc-visit-info h3, .hc-contact-info h3 {
  margin-top: var(--hc-space-6);
  font-size: 1.1rem;
  color: var(--hc-color-primary);
  padding-bottom: var(--hc-space-2);
  border-bottom: 2px solid var(--hc-color-accent);
  display: inline-block;
}
.hc-visit-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-space-3);
  margin-top: var(--hc-space-5);
}
.hc-visit-map iframe {
  border-radius: var(--hc-radius-lg);
  box-shadow: var(--hc-shadow-md);
  border: 3px solid var(--hc-color-accent);
}
.hc-address { font-style: normal; line-height: 1.6; }

.hc-hours {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: var(--hc-space-2) var(--hc-space-5);
  font-size: 0.95rem;
}
.hc-hours dt { font-weight: 600; color: var(--hc-color-primary); }
.hc-hours dd { margin: 0; }

/* ----- 404 ------------------------------------------------------------- */
.hc-404 { padding-block: var(--hc-space-12); }
.hc-404-inner { text-align: center; }
.hc-404-lead { font-size: 1.125rem; margin-bottom: var(--hc-space-6); }
.hc-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-space-3);
  justify-content: center;
  margin-bottom: var(--hc-space-8);
}
.hc-404-search { max-width: 480px; margin: 0 auto; }

/* ----- Forms ----------------------------------------------------------- */
.hc-form { display: grid; gap: var(--hc-space-4); }
.hc-form-row { display: flex; flex-direction: column; gap: var(--hc-space-2); }
.hc-form-row.hc-form-row-2col { display: grid; grid-template-columns: 1fr; gap: var(--hc-space-4); }
.hc-form label { font-weight: 500; font-size: 0.9rem; }
.hc-form .hc-required { color: var(--hc-color-sale); }
.hc-form input[type="text"],
.hc-form input[type="email"],
.hc-form input[type="tel"],
.hc-form input[type="number"],
.hc-form input[type="url"],
.hc-form select,
.hc-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d4cdb8;
  border-radius: var(--hc-radius-md);
  background: #fff;
  font-size: 1rem;
  line-height: 1.4;
  min-height: 48px;
}
.hc-form textarea { min-height: 140px; resize: vertical; }
.hc-form input:focus, .hc-form textarea:focus, .hc-form select:focus {
  outline: 2px solid var(--hc-color-accent);
  outline-offset: 2px;
  border-color: var(--hc-color-accent);
}
.hc-form-actions { margin-top: var(--hc-space-3); }
.hc-form-message { padding: var(--hc-space-4); border-radius: var(--hc-radius-md); margin-bottom: var(--hc-space-4); }
.hc-form-message-success { background: #d8efdc; color: #1e4d2b; border-left: 4px solid #1e4d2b; }
.hc-form-message-error { background: #f6dfdf; color: #6e1b1b; border-left: 4px solid #7a2e2e; }
.hc-form-hp { position: absolute; left: -9999px; top: -9999px; }

/* ----- Search form ----------------------------------------------------- */
.hc-search-form { display: flex; gap: var(--hc-space-2); }
.hc-search-field { flex: 1; padding: 0.75rem; border: 1px solid #d4cdb8; border-radius: var(--hc-radius-md); }
.hc-search-submit {
  padding: 0.75rem 1.25rem;
  background: var(--hc-color-primary);
  color: #fff;
  border: 0;
  border-radius: var(--hc-radius-md);
  cursor: pointer;
  font-weight: 600;
}
.hc-search-submit:hover { background: var(--hc-color-primary-dark); color: var(--hc-color-accent); }

/* ----- Footer ---------------------------------------------------------- */
.hc-footer {
  background: var(--hc-color-primary);
  color: rgba(255,255,255,0.9);
  margin-top: var(--hc-space-12);
  border-top: 4px solid var(--hc-color-accent);
}
.hc-footer h3, .hc-footer .widget-title {
  color: var(--hc-color-accent);
  font-family: var(--hc-font-heading);
  font-size: 1.15rem;
  margin-bottom: var(--hc-space-4);
  padding-bottom: var(--hc-space-2);
  position: relative;
}
.hc-footer h3::after, .hc-footer .widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--hc-color-accent);
}
.hc-footer a { color: rgba(255,255,255,0.9); }
.hc-footer a:hover { color: var(--hc-color-accent); }
.hc-footer-grid {
  display: grid;
  gap: var(--hc-space-8);
  grid-template-columns: 1fr;
  padding-block: var(--hc-space-10);
}
.hc-footer-tagline { font-size: 0.95rem; opacity: 0.85; }
.hc-footer-menu, .hc-footer .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--hc-space-2);
}
.hc-footer-menu a { display: inline-block; padding: var(--hc-space-1) 0; }
.hc-footer .hc-hours { color: rgba(255,255,255,0.9); }
.hc-footer .hc-hours dt { color: var(--hc-color-accent); }
.hc-footer .hc-address { color: rgba(255,255,255,0.9); }

.hc-social {
  display: flex;
  gap: var(--hc-space-3);
  margin-top: var(--hc-space-4);
}
.hc-social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--hc-color-accent);
  font-size: 0.7rem;
  border: 1px solid rgba(212,173,95,0.3);
  transition: all 0.2s;
}
.hc-social-icon span { font-size: 0; }
.hc-social-icon::before {
  content: attr(aria-label);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hc-social-icon:hover {
  background: var(--hc-color-accent);
  color: var(--hc-color-primary);
  border-color: var(--hc-color-accent);
  text-decoration: none;
}

.hc-legal-bar {
  background: var(--hc-color-primary-dark);
  font-size: 0.85rem;
  padding-block: var(--hc-space-4);
  border-top: 1px solid rgba(212,173,95,0.15);
}
.hc-legal-inner {
  display: flex;
  flex-direction: column;
  gap: var(--hc-space-3);
  text-align: center;
}
.hc-copyright { margin: 0; }
.hc-legal-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--hc-space-4);
  justify-content: center;
}
.hc-payments { margin: 0; opacity: 0.7; font-size: 0.75rem; color: var(--hc-color-accent); }

/* ----- Generic page ---------------------------------------------------- */
.hc-page { padding-block: var(--hc-space-8); }
.hc-page-header { margin-bottom: var(--hc-space-6); text-align: center; }
.hc-page-header .hc-page-title {
  padding-bottom: var(--hc-space-3);
  display: inline-block;
  position: relative;
}
.hc-page-header .hc-page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--hc-color-accent);
  border-radius: 2px;
}
.hc-page-content > * + * { margin-top: var(--hc-space-4); }

/* ============================================================
   Responsive breakpoints
   ============================================================ */
@media (min-width: 768px) {
  :root { --hc-gutter: 1.5rem; }
  .hc-utility-bar { display: block; }
  .hc-product-grid, ul.products { grid-template-columns: repeat(3, 1fr); }
  .hc-threeup-grid { grid-template-columns: repeat(3, 1fr); }
  .hc-trust-grid { grid-template-columns: repeat(4, 1fr); }
  .hc-buy-band-inner { grid-template-columns: 3fr 2fr; }
  .hc-buy-band-list { grid-template-columns: 1fr 1fr; }
  .hc-about-grid { grid-template-columns: 1fr 1fr; }
  .hc-ebay-inner { grid-template-columns: 3fr 2fr; }
  .hc-visit-grid, .hc-contact-grid { grid-template-columns: 1fr 1fr; }
  .hc-what-we-buy { grid-template-columns: repeat(3, 1fr); }
  .hc-steps { grid-template-columns: repeat(3, 1fr); }
  .hc-form-row.hc-form-row-2col { grid-template-columns: 1fr 1fr; }
  .hc-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .hc-legal-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  .hc-menu-toggle { display: none; }
  .hc-primary-nav {
    display: block !important;
    position: static;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .hc-nav-menu {
    display: flex;
    gap: var(--hc-space-2);
  }
  .hc-nav-menu li { border-bottom: 0; }
  .hc-nav-menu a {
    padding: var(--hc-space-3) var(--hc-space-4);
    border-radius: var(--hc-radius-md);
    position: relative;
  }
  .hc-nav-menu a::after {
    content: '';
    position: absolute;
    left: var(--hc-space-4);
    right: var(--hc-space-4);
    bottom: var(--hc-space-2);
    height: 3px;
    background: var(--hc-color-primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
  }
  .hc-nav-menu a:hover::after, .hc-nav-menu .current-menu-item a::after { transform: scaleX(1); }
  .hc-nav-menu a:hover { background: transparent; }
  .hc-header-actions { margin-left: 0; }
  .hc-product-grid, ul.products { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .hc-product-grid, ul.products { grid-template-columns: repeat(4, 1fr); }
}

@media print {
  .hc-utility-bar, .hc-primary-nav, .hc-menu-toggle, .hc-header-actions,
  .hc-footer, .hc-buy-band, .hc-ebay-band, .hc-hero-ctas, .hc-form, button { display: none !important; }
  body { background: #fff; color: #000; }
}

/* =====================================================
   Parallax section
   ===================================================== */
.hc-parallax {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	width: 100%;
}
.hc-parallax-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(5,15,12,0.55) 0%, rgba(5,15,12,0.45) 50%, rgba(5,15,12,0.65) 100%);
	pointer-events: none;
}
.hc-parallax-overlay-light {
	background: rgba(255,255,255,0.35);
}
.hc-parallax-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
	padding: 4rem 1.5rem;
	max-width: 800px;
}
.hc-parallax-content .hc-eyebrow {
	color: var(--hc-color-accent);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-size: 0.85rem;
	margin: 0 0 0.75rem;
	font-weight: 600;
}
.hc-parallax-content h2 {
	color: #fff;
	font-family: var(--hc-font-heading);
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.15;
	margin: 0 0 1rem;
}
.hc-parallax-content p {
	color: rgba(255,255,255,0.95);
	font-size: 1.15rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.hc-parallax-content .hc-btn {
	margin-top: 0.5rem;
}

/* Disable parallax on mobile (background-attachment: fixed is buggy/slow on iOS Safari) */
@media (max-width: 768px) {
	.hc-parallax {
		background-attachment: scroll;
		min-height: 400px !important;
	}
	.hc-parallax-content {
		padding: 3rem 1.25rem;
	}
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.hc-parallax {
		background-attachment: scroll;
	}
}

/* =====================================================
   Footer additions: service area line + black copyright strip
   ===================================================== */
.hc-footer-service-area {
	background: var(--hc-color-primary, #0d211a);
	border-top: 1px solid rgba(228, 196, 126, 0.15);
	padding: 1.25rem 0;
	text-align: center;
}
.hc-footer-service-area p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.82rem;
	line-height: 1.6;
	margin: 0;
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1rem;
}
.hc-footer-bottom {
	background: #000;
	color: rgba(255, 255, 255, 0.6);
	padding: 0.9rem 1rem;
	text-align: center;
	font-size: 0.78rem;
	letter-spacing: 0.02em;
}
.hc-footer-bottom a {
	color: var(--hc-color-accent, #e4c47e);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}
.hc-footer-bottom a:hover {
	color: #fff;
}

/* Tighten the compact-hours rendering in the footer */
.hc-footer .hc-hours {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.25rem 1rem;
	margin: 0;
}
.hc-footer .hc-hours dt {
	color: var(--hc-color-accent, #e4c47e);
	font-weight: 600;
	font-size: 0.88rem;
	margin: 0;
}
.hc-footer .hc-hours dd {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.88rem;
	margin: 0;
}

/* Service area shortcode (when used in page content) */
.hc-service-area {
	font-size: 0.95rem;
	line-height: 1.7;
	color: rgba(13, 33, 26, 0.85);
	font-style: italic;
	padding: 0.75rem 1rem;
	border-left: 3px solid var(--hc-color-accent, #e4c47e);
	background: rgba(228, 196, 126, 0.08);
	border-radius: 0 6px 6px 0;
	margin: 1.25rem 0;
}

/* Hide the OLD .hc-legal-bar block if anything still references it
   (we replaced it with .hc-footer-bottom) */
.hc-legal-bar { display: none; }

/* ----- Blog / Articles ----------------------------------------------- */
.hc-single { padding-block: var(--hc-space-12); }
.hc-post-header { text-align: center; margin-bottom: var(--hc-space-8); }
.hc-post-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 var(--hc-space-4);
  color: var(--hc-color-primary);
}
.hc-post-meta {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hc-color-accent-dark);
  font-weight: 600;
}
.hc-post-featured {
  margin: 0 0 var(--hc-space-8);
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: var(--hc-shadow-lg);
}
.hc-post-featured img { width: 100%; height: auto; display: block; }
.hc-post-content {
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--hc-color-text);
}
.hc-post-content > * + * { margin-top: var(--hc-space-5); }
.hc-post-content h2 {
  font-size: 1.6rem;
  margin-top: var(--hc-space-8);
  padding-top: var(--hc-space-2);
  color: var(--hc-color-primary);
}
.hc-post-content h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--hc-color-accent);
  margin-top: var(--hc-space-3);
  border-radius: 2px;
}
.hc-post-content h3 { font-size: 1.3rem; margin-top: var(--hc-space-6); color: var(--hc-color-primary); }
.hc-post-content a { color: var(--hc-color-accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.hc-post-content a:hover { color: var(--hc-color-primary); }
.hc-post-content blockquote {
  margin: var(--hc-space-6) 0;
  padding: var(--hc-space-4) var(--hc-space-6);
  border-left: 4px solid var(--hc-color-accent);
  background: var(--hc-color-bg-alt);
  border-radius: 0 var(--hc-radius-md) var(--hc-radius-md) 0;
  font-family: var(--hc-font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--hc-color-primary);
}
.hc-post-content img { max-width: 100%; height: auto; border-radius: var(--hc-radius-md); }
.hc-post-content ul, .hc-post-content ol { padding-left: var(--hc-space-6); }
.hc-post-content li + li { margin-top: var(--hc-space-2); }

/* Blog archive listing */
.hc-blog-archive { padding-block: var(--hc-space-12); }
.hc-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--hc-space-6);
}
.hc-blog-card {
  background: #fff;
  border-radius: var(--hc-radius-lg);
  overflow: hidden;
  box-shadow: var(--hc-shadow-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
}
.hc-blog-card:hover { transform: translateY(-4px); box-shadow: var(--hc-shadow-lg); }
.hc-blog-card-body { padding: var(--hc-space-5); display: flex; flex-direction: column; gap: var(--hc-space-3); flex: 1; }
.hc-blog-card-title { font-size: 1.25rem; line-height: 1.25; margin: 0; }
.hc-blog-card-title a { color: var(--hc-color-primary); }
.hc-blog-card-title a:hover { color: var(--hc-color-accent-dark); }

/* ===== Shop-by-Category grid ([hc_categories] shortcode) ===== */
.hc-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--hc-space-5);
  max-width: 1040px;
  margin: var(--hc-space-8) auto;
  padding-inline: var(--hc-space-4);
}
.hc-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--hc-space-3);
  padding: var(--hc-space-6) var(--hc-space-4);
  background: #fff;
  border: 1px solid rgba(13, 33, 26, 0.08);
  border-top: 3px solid var(--hc-color-accent);
  border-radius: var(--hc-radius-md);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(13, 33, 26, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.hc-cat-card:hover, .hc-cat-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13, 33, 26, 0.14);
  border-top-color: var(--hc-color-accent-dark);
  text-decoration: none;
}
.hc-cat-card__icon { color: var(--hc-color-accent); line-height: 0; }
.hc-cat-card__icon svg { width: 46px; height: 46px; display: block; }
.hc-cat-card__name {
  font-family: var(--hc-font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hc-color-primary);
}
.hc-cat-card__meta {
  font-family: var(--hc-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hc-color-accent-dark);
}
@media (max-width: 480px) {
  .hc-cat-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: var(--hc-space-4); }
}

/* category card image (used when a category has a thumbnail set) */
.hc-cat-card__img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--hc-color-accent-soft);
}

/* Footer: flexible column layout — balances itself regardless of how many
   menu columns are assigned (brand wider; link/hours columns share the rest) */
.hc-footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--hc-space-8);
}
.hc-footer-grid > .hc-footer-col { flex: 1 1 170px; }
.hc-footer-grid > .hc-footer-about { flex: 2 1 280px; }
