:root {
  --bg: #090807;
  --bg-soft: #13110d;
  --surface: rgba(17, 15, 12, 0.84);
  --surface-strong: rgba(26, 21, 15, 0.94);
  --surface-dark: #080706;
  --text: #f5ebda;
  --text-soft: #d2c2a5;
  --text-inverse: #f8f0e0;
  --gold: #d5a84f;
  --gold-deep: #a97b2a;
  --line: rgba(255, 217, 156, 0.2);
  --line-strong: rgba(213, 168, 79, 0.4);
  --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.56);
  --shadow-md: 0 20px 45px rgba(0, 0, 0, 0.42);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --metals-bar-height: 58px;
  --container: min(1180px, calc(100% - 2rem));
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(213, 168, 79, 0.22), transparent 34%),
    radial-gradient(circle at 82% 4%, rgba(98, 73, 35, 0.32), transparent 24%),
    linear-gradient(180deg, #070605 0%, var(--bg) 46%, #0f0c09 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.metals-ticker {
  position: sticky;
  top: 0;
  z-index: 40;
  background:
    linear-gradient(120deg, rgba(19, 17, 15, 0.96) 0%, rgba(44, 34, 20, 0.95) 55%, rgba(126, 92, 40, 0.88) 100%);
  border-bottom: 1px solid rgba(255, 228, 184, 0.2);
  box-shadow: 0 18px 38px rgba(20, 16, 11, 0.25);
}

.metals-ticker::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.15;
  pointer-events: none;
}

.metals-ticker-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.metals-label,
.metals-updated {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 236, 202, 0.84);
}

.metals-updated {
  font-size: 0.66rem;
}

.metals-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.metal-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 233, 196, 0.24);
  background: rgba(255, 253, 247, 0.12);
  color: #fff8ea;
  font-size: 0.84rem;
  line-height: 1.2;
}

.metal-chip strong {
  color: #f8d596;
  font-size: 0.88rem;
  font-weight: 700;
}

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

.section {
  padding: 5rem 0;
  position: relative;
}

.section-header,
.section-heading {
  max-width: 700px;
}

.section-header.center {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.button:hover,
.button:focus-visible,
.slider-button:hover,
.slider-button:focus-visible,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.nav-actions a:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #d4ae6d 0%, var(--gold) 42%, #8f6b33 100%);
  color: #20170b;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(183, 138, 63, 0.32);
}

.button-secondary {
  background: rgba(20, 17, 14, 0.9);
  border-color: var(--line-strong);
  color: var(--text-inverse);
  backdrop-filter: blur(16px);
}

.button-tertiary {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header {
  position: sticky;
  top: var(--metals-bar-height);
  z-index: 30;
  padding: 1rem 0;
  transition: padding var(--transition), background-color var(--transition), backdrop-filter var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity var(--transition), border-color var(--transition);
  z-index: -1;
}

.site-header.scrolled {
  padding: 0.65rem 0;
}

.site-header.scrolled::after {
  opacity: 1;
  border-color: var(--line);
  box-shadow: 0 14px 28px rgba(17, 14, 10, 0.06);
}

.shop-promo-strip {
  position: relative;
  z-index: 20;
  border-top: 1px solid rgba(255, 228, 184, 0.14);
  border-bottom: 1px solid rgba(255, 228, 184, 0.2);
  background:
    linear-gradient(120deg, rgba(74, 51, 20, 0.86) 0%, rgba(150, 111, 54, 0.9) 48%, rgba(70, 46, 18, 0.9) 100%);
}

.shop-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.shop-promo-inner p {
  margin: 0;
  color: #fff4de;
  font-size: 0.96rem;
}

.shop-promo-inner strong {
  color: #ffe5b0;
}

.shop-promo-cta {
  min-height: 44px;
  padding: 0.6rem 1.15rem;
  box-shadow: 0 12px 24px rgba(44, 26, 3, 0.3);
}

.home-shop-spotlight {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 180, 0.55);
  background: rgba(207, 155, 70, 0.2);
  color: #fcedcd;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1.25rem;
}

.header-cart-trigger {
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 221, 164, 0.24);
  background: rgba(17, 14, 11, 0.92);
  color: #fff8ea;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.header-cart-trigger span {
  display: inline-flex;
  min-width: 22px;
  min-height: 22px;
  margin-left: 0.45rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(213, 168, 79, 0.25);
  border: 1px solid rgba(255, 221, 164, 0.35);
  font-size: 0.82rem;
}

.nav-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
  justify-self: start;
  margin-right: auto;
  min-width: 0;
}

.brand-logo,
.footer-logo,
.hero-logo {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  min-width: 0;
}

.site-nav a {
  white-space: nowrap;
}

.site-nav a,
.nav-actions a,
.footer-column a {
  position: relative;
  font-size: 0.96rem;
}

.site-nav a,
.nav-actions a {
  font-weight: 700;
}

.site-nav a::after,
.nav-actions a::after,
.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-actions a:hover::after,
.nav-actions a:focus-visible::after,
.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-call {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ddb872, #b3812c);
  color: #2a1d09;
  box-shadow: var(--shadow-sm);
}

.nav-call::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(18, 16, 13, 0.9);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 0;
  border-radius: 999px;
  background: var(--text-inverse);
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition), background-color var(--transition);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.5);
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: 9rem 0 6rem;
}

.ring-builder-section {
  scroll-margin-top: calc(var(--metals-bar-height) + 88px);
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 168, 79, 0.13), transparent 42%),
    #0d0b09;
}

.ring-builder-section .section-header p:last-child {
  max-width: 620px;
  margin-inline: auto;
}

.ring-builder-frame {
  --ring-builder-height: clamp(560px, 66svh, 740px);
  overflow: hidden;
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
  border: 1px solid rgba(221, 184, 114, 0.28);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.ring-builder-frame iframe {
  display: block;
  width: 100%;
  height: 640px;
  height: var(--ring-builder-height);
  border: 0;
  background: #fff;
}

.ring-builder-fallback {
  margin: 0;
  padding: 0.9rem 1.25rem;
  background: #17120c;
  color: var(--text-soft);
  text-align: center;
}

.ring-builder-fallback a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(9, 9, 10, 0.96) 0%, rgba(24, 22, 20, 0.84) 44%, rgba(73, 56, 31, 0.62) 100%),
    radial-gradient(circle at 20% 15%, rgba(214, 175, 111, 0.28), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: end;
}

.hero-copy,
.hero-panel {
  color: var(--text-inverse);
}

.hero-text {
  max-width: 620px;
  font-size: 1.1rem;
  color: rgba(245, 239, 229, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-trust span {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(245, 239, 229, 0.92);
  backdrop-filter: blur(10px);
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.panel-card-main {
  padding: 1.8rem;
}

.panel-topline,
.detail-label {
  margin-bottom: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 229, 0.72);
}

.panel-divider {
  width: 80px;
  height: 1px;
  margin: 1.3rem 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.panel-card p,
.detail-value {
  margin-bottom: 0;
  color: rgba(245, 239, 229, 0.86);
}

.about-grid,
.specialties-layout,
.trust-layout,
.visit-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.why-grid,
.services-grid,
.trust-stats,
.visit-cards,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.about-copy {
  display: grid;
  gap: 1.75rem;
}

.about-visual {
  display: grid;
  gap: 1rem;
}

.about-photo-card,
.about-note-card,
.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(255, 229, 184, 0.22);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.about-photo-card::before,
.about-note-card::before,
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 221, 164, 0.2);
  z-index: 1;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.about-note-card {
  padding: 1.5rem;
}

.about-note-card .detail-label {
  color: var(--gold-deep);
}

.about-note-card .detail-value {
  color: var(--text-inverse);
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-card,
.service-card,
.stat-card,
.specialty-card,
.info-card,
.review-card,
.cta-panel,
.map-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 229, 184, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.why-card,
.service-card,
.stat-card,
.specialty-card,
.info-card,
.review-card {
  display: flex;
  flex-direction: column;
}

.why-card,
.stat-card,
.specialty-card,
.info-card {
  padding: 1.5rem;
}

.why-card::before,
.service-card::before,
.review-card::before,
.specialty-card::before,
.info-card::before,
.map-card::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 221, 164, 0.2);
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  padding: 1.6rem;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover,
.specialty-card:hover,
.why-card:hover,
.review-card:hover,
.info-card:hover,
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card::after,
.specialty-card::after,
.stat-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -65% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 138, 63, 0.16), transparent 68%);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(183, 138, 63, 0.18), rgba(255, 255, 255, 0.8));
  color: var(--gold-deep);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.trust-section {
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.98), rgba(28, 19, 10, 0.97)),
    var(--surface-dark);
}

.trust-copy,
.trust-copy p,
.trust-copy blockquote,
.trust-copy h2,
.trust-copy .eyebrow,
.stat-card {
  color: var(--text-inverse);
}

.trust-copy blockquote {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(212, 174, 109, 0.55);
  font-size: 1.12rem;
  color: rgba(245, 239, 229, 0.85);
}

.trust-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  min-height: 220px;
  justify-content: space-between;
  gap: 1rem;
}

.stat-number {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.95;
  color: #e4bf7e;
}

.stat-label {
  display: inline-block;
  max-width: 18ch;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(245, 239, 229, 0.82);
}

.service-card p,
.why-card p,
.specialty-card p,
.info-card p,
.review-card p {
  margin-bottom: 0;
}

.review-card {
  gap: 0.9rem;
}

.reviews-shell {
  display: grid;
  gap: 1.5rem;
}

.reviews-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.slider-button {
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(15, 13, 10, 0.88);
  color: var(--text-inverse);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.slider-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  transition: transform 420ms ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 100%;
  padding: 1.7rem;
}

.review-card h3 {
  margin-bottom: 1rem;
}

.review-card p:last-child {
  margin-bottom: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 21, 21, 0.18);
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition);
}

.slider-dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

.section-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.gallery-section {
  background:
    radial-gradient(circle at top right, rgba(213, 168, 79, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.85), rgba(15, 12, 9, 0.96));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-card {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 0.7rem;
  background: linear-gradient(180deg, rgba(24, 20, 15, 0.94), rgba(13, 10, 7, 0.98));
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(213, 168, 79, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(11, 9, 7, 0.94), rgba(7, 6, 5, 0.98));
}

.social-layout {
  display: grid;
  gap: 1.5rem;
}

.social-copy {
  max-width: 720px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(19, 15, 11, 0.88);
  border: 1px solid rgba(255, 222, 166, 0.28);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 217, 146, 0.46);
}

.social-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(213, 168, 79, 0.28), rgba(42, 31, 17, 0.9));
  color: #f3cd86;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-card strong {
  display: block;
  color: var(--text-inverse);
  font-size: 1rem;
}

.social-card small {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 10px);
}

.visit-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 2rem 0;
}

.hours-card {
  grid-column: 1 / -1;
}

.hours-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.hours-card li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.visit-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-card {
  padding: 0.7rem;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
  border-radius: calc(var(--radius-lg) - 8px);
  min-height: 540px;
  filter: saturate(0.86) contrast(1.02);
}

.cta-section {
  padding-top: 0;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(22, 21, 21, 0.96), rgba(63, 46, 23, 0.96));
  border-color: rgba(255, 255, 255, 0.1);
}

.cta-panel h2,
.cta-panel p,
.cta-panel .eyebrow {
  color: var(--text-inverse);
}

.site-footer {
  padding: 3rem 0 1.2rem;
  background: #060505;
  color: rgba(245, 239, 229, 0.86);
}

.footer-grid {
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-logo {
  width: 72px;
  height: 72px;
}

.footer-column {
  display: grid;
  gap: 0.5rem;
}

.footer-column h3,
.footer-brand h2 {
  color: #fff8ea;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.lead-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.lead-popup-card {
  position: relative;
  width: min(100%, 520px);
  z-index: 1;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(213, 168, 79, 0.14), transparent 42%),
    linear-gradient(160deg, rgba(8, 8, 8, 0.98), rgba(26, 21, 15, 0.95));
  border: 1px solid rgba(255, 219, 156, 0.35);
  box-shadow: var(--shadow-lg);
}

.lead-popup-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 240, 210, 0.15);
  pointer-events: none;
}

.lead-popup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 231, 187, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff9ea;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.lead-popup-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e3bd79;
}

.lead-popup-card h2 {
  margin-top: 0.55rem;
  margin-bottom: 0.7rem;
  color: #fff8ea;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
}

.lead-popup-copy {
  margin-bottom: 0.9rem;
  color: rgba(248, 240, 224, 0.8);
}

.lead-popup-perks {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.lead-popup-perks li {
  position: relative;
  padding-left: 1rem;
  color: rgba(246, 231, 202, 0.9);
  font-size: 0.9rem;
}

.lead-popup-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e3bd79;
}

.lead-popup-form {
  display: grid;
  gap: 0.6rem;
}

.lead-popup-form label {
  font-size: 0.88rem;
  color: #f6e7ca;
}

.lead-popup-form input {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 224, 168, 0.34);
  background: rgba(0, 0, 0, 0.34);
  color: #fff8ea;
}

.lead-popup-form input:focus-visible,
.lead-popup-close:focus-visible {
  outline: 2px solid rgba(222, 181, 104, 0.82);
  outline-offset: 1px;
}

.lead-submit {
  margin-top: 0.35rem;
}

.lead-popup-fineprint {
  margin: 0.15rem 0 0.1rem;
  color: rgba(246, 231, 202, 0.7);
  font-size: 0.78rem;
}

.lead-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.lead-popup-status {
  min-height: 1.5rem;
  margin: 0;
  color: #f6e7ca;
  font-size: 0.9rem;
}

.lead-popup-status.is-success {
  color: #f8d594;
}

.lead-popup-status.is-error {
  color: #ffd0b7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease;
}

[data-reveal="left"] {
  transform: translateX(34px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 1rem;
  }

  .nav-actions {
    gap: 0.7rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .about-grid,
  .trust-layout,
  .visit-layout,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    display: grid;
  }

  .map-card iframe {
    min-height: 420px;
  }

  .about-photo {
    min-height: 440px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --metals-bar-height: 78px;
  }

  .metals-ticker-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.9rem;
    padding: 0.5rem 0;
  }

  .metals-label,
  .metals-updated {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .metals-updated {
    font-size: 0.6rem;
  }

  .metals-prices {
    order: 2;
    width: 100%;
    gap: 0.45rem;
  }

  .metal-chip {
    font-size: 0.78rem;
    padding: 0.32rem 0.62rem;
  }

  .site-header {
    padding: 0.85rem 0;
  }

  .ring-builder-frame {
    --ring-builder-height: clamp(540px, 68svh, 660px);
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto auto;
    gap: 0.7rem;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.75rem;
    right: 0.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem;
    background: rgba(12, 9, 7, 0.97);
    border: 1px solid rgba(221, 184, 114, 0.22);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 200;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav,
  .nav-actions {
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.25rem 0;
  }

  .site-nav a {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: rgba(245, 239, 229, 0.85);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(221, 184, 114, 0.1);
    color: #ddb872;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-actions {
    padding: 0.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.25rem;
  }

  .nav-actions a {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: rgba(245, 239, 229, 0.7);
  }

  .nav-actions a:hover,
  .nav-actions a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(245, 239, 229, 0.95);
  }

  .nav-actions a::after {
    display: none;
  }

  .nav-actions .nav-call {
    background: linear-gradient(135deg, #ddb872, #b3812c);
    color: #2a1d09;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-top: 0.25rem;
  }

  .nav-actions .nav-call:hover,
  .nav-actions .nav-call:focus-visible {
    background: linear-gradient(135deg, #e8cb8a, #c4922e);
    color: #1a0f02;
  }

  .nav-open .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-section {
    padding-top: 8rem;
  }

  .shop-promo-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-promo-cta {
    width: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --metals-bar-height: 96px;
    --container: min(100% - 1.25rem, 100% - 1.25rem);
  }

  .section {
    padding: 4rem 0;
  }

  .brand-logo,
  .hero-logo {
    width: 54px;
    height: 54px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.76rem;
  }

  .hero-actions,
  .visit-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .shop-promo-inner {
    align-items: stretch;
    gap: 0.6rem;
  }

  .shop-promo-inner p {
    font-size: 0.9rem;
  }

  .shop-promo-cta {
    width: 100%;
  }

  .home-shop-spotlight {
    display: block;
    font-size: 0.88rem;
  }

  .why-grid,
  .services-grid,
  .trust-stats,
  .visit-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    max-width: 420px;
    width: 100%;
    margin-inline: auto;
  }

  .about-photo {
    min-height: 320px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .stat-card {
    min-height: 0;
  }

  .stat-label {
    max-width: none;
  }

  .reviews-controls {
    justify-content: stretch;
  }

  .slider-button {
    flex: 1;
  }

  .panel-card,
  .service-card,
  .review-card,
  .cta-panel,
  .why-card,
  .info-card,
  .specialty-card,
  .stat-card {
    border-radius: 22px;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .ring-builder-frame {
    --ring-builder-height: clamp(500px, 70svh, 600px);
    border-radius: 18px;
  }

  .ring-builder-fallback {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .lead-popup-card {
    padding: 1.25rem;
  }
}

/* Shop demo pages */
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.page-main {
  padding-bottom: 2rem;
}

.shop-hero {
  position: relative;
  padding: 8rem 0 3rem;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(213, 168, 79, 0.16), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.05), transparent 16%);
  pointer-events: none;
}

.shop-hero-simple {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.shop-hero-simple h1 {
  margin-bottom: 0.35rem;
}

.shop-intro {
  max-width: 640px;
  margin: 0 auto;
}

.shop-subheading {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: rgba(245, 239, 229, 0.82);
}

.shop-single-grid {
  display: grid;
  place-items: center;
}

.shop-card,
.product-gallery-card,
.product-info-panel,
.product-details-card,
.why-buy-card,
.custom-cta-light {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 229, 184, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.shop-card::before,
.product-gallery-card::before,
.product-info-panel::before,
.product-details-card::before,
.why-buy-card::before,
.custom-cta-light::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 221, 164, 0.18);
}

.shop-card {
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(213, 168, 79, 0.42);
}

.shop-card-single {
  max-width: 980px;
  width: 100%;
}

.shop-card-link {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  height: 100%;
}

.shop-card-media,
.product-gallery-frame {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(24, 20, 15, 0.94), rgba(13, 10, 7, 0.98));
}

.shop-card-media {
  min-height: 430px;
}

.shop-card-media img,
.product-gallery-frame img,
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card-media img {
  transition: transform 260ms ease;
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.04);
}

.shop-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.4rem;
}

.shop-card-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.shop-card-body p {
  max-width: 44ch;
}

.shop-mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.shop-mini-specs span {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 239, 229, 0.9);
  font-size: 0.85rem;
}

.shop-card-body .hero-actions {
  margin: 0.5rem 0 0;
}

.shop-card-type,
.product-label {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.shop-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.shop-price,
.product-price {
  color: #fff8ea;
  font-size: 1.25rem;
  font-weight: 800;
}

.shop-view {
  color: #f1cb86;
  font-weight: 700;
}

.shop-note-bar {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(213, 168, 79, 0.24);
  background: rgba(19, 16, 12, 0.86);
  color: rgba(245, 239, 229, 0.88);
  text-align: center;
}

.product-page-section {
  padding: 8rem 0 2rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 1.5rem;
  align-items: start;
}

.product-gallery-card,
.product-info-panel,
.product-details-card,
.why-buy-card {
  padding: 1.5rem;
}

.product-info-panel h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 0.45rem;
}

.product-details-card h2,
.why-buy-card h2,
.custom-cta-light h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.product-gallery-frame {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
}

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.product-thumb {
  padding: 0;
  height: 110px;
  border: 1px solid rgba(255, 221, 164, 0.24);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(16, 14, 11, 0.92);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-thumb:hover,
.product-thumb:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(213, 168, 79, 0.5);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.product-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(213, 168, 79, 0.45) inset;
}

.product-description {
  font-size: 1.03rem;
}

.product-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.2rem;
}

.product-meta-chips span {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 239, 229, 0.92);
}

.product-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.product-form label {
  color: #fff8ea;
  font-weight: 700;
}

.product-form select {
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(213, 168, 79, 0.35);
  border-radius: 12px;
  background: rgba(12, 10, 8, 0.98);
  color: #fff8ea;
}

.product-note,
.product-origin-note {
  margin: 0;
  font-size: 0.9rem;
}

.product-details-section,
.why-buy-section {
  padding-top: 0;
}

.product-detail-grid,
.why-buy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin-top: 1rem;
}

.product-detail-item,
.why-buy-list li {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 221, 164, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.product-detail-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff8ea;
  font-size: 0.88rem;
}

.product-detail-item span,
.why-buy-list li {
  color: rgba(245, 239, 229, 0.82);
}

.why-buy-list {
  padding: 0;
  list-style: none;
}

.custom-cta-light {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(22, 21, 21, 0.96), rgba(63, 46, 23, 0.96));
}

.custom-cta-light h2,
.custom-cta-light p {
  color: var(--text-inverse);
}

.light-footer {
  background: #0b0907;
}

@media (max-width: 1080px) {
  .shop-card-link,
  .product-layout,
  .custom-cta-light {
    grid-template-columns: 1fr;
    display: grid;
  }

  .shop-card-media {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .shop-hero {
    padding-top: 7rem;
  }

  .product-thumb-row,
  .product-detail-grid,
  .why-buy-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* We Buy Gold page */
.gold-buy-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(213, 168, 79, 0.18), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(105, 76, 33, 0.24), transparent 28%),
    linear-gradient(180deg, #070605 0%, #0b0907 48%, #110d09 100%);
  color: var(--text);
}

.gold-buy-main {
  padding-bottom: 3rem;
}

.gold-buy-main p,
.gold-buy-main li {
  color: var(--text-soft);
}

.gold-buy-main h1,
.gold-buy-main h2,
.gold-buy-main h3 {
  color: var(--text-inverse);
}

.gold-buy-main .eyebrow {
  color: var(--gold-deep);
}

.gold-buy-hero {
  position: relative;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
}

.gold-buy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(8, 7, 6, 0.97) 0%, rgba(26, 21, 15, 0.92) 50%, rgba(64, 47, 25, 0.74) 100%),
    radial-gradient(circle at 12% 18%, rgba(213, 168, 79, 0.22), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(255, 255, 255, 0.08), transparent 20%);
}

.gold-buy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 92%);
  pointer-events: none;
}

.gold-convert-head,
.gold-convert-cards {
  position: relative;
  z-index: 1;
}

.gold-convert-head {
  max-width: 760px;
  margin-bottom: 1.7rem;
}

.gold-convert-head h1 {
  font-size: clamp(2.6rem, 5.8vw, 5.1rem);
  line-height: 1.02;
}

.gold-buy-subtext {
  max-width: 62ch;
  margin-top: 1rem;
  font-size: 1.08rem;
}

.gold-convert-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.gold-buy-page .calculator-card,
.gold-buy-page .gold-form-card,
.gold-buy-page .trust-point {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 229, 184, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.gold-buy-page .calculator-card::before,
.gold-buy-page .gold-form-card::before,
.gold-buy-page .trust-point::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 221, 164, 0.2);
  pointer-events: none;
}

.gold-buy-page .calculator-card,
.gold-buy-page .gold-form-card {
  padding: 1.5rem;
}

.offer-label {
  margin: 0 0 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep) !important;
}

.gold-calc-copy {
  margin-bottom: 0.75rem;
}

.gold-calc-formula,
.gold-calc-live-price {
  margin-bottom: 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 224, 173, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 239, 229, 0.9) !important;
  font-size: 0.94rem;
}

.gold-calc-live-price strong {
  color: #f8d596;
}

.calculator-fields,
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.gold-offer-form {
  display: grid;
  gap: 0.9rem;
}

.field span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(248, 240, 224, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
}

.calculator-card input,
.calculator-card select,
.gold-offer-form input,
.gold-offer-form select {
  width: 100%;
  min-height: 52px;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 224, 168, 0.24);
  background: rgba(0, 0, 0, 0.34);
  color: #fff8ea;
}

.calculator-card input:focus-visible,
.calculator-card select:focus-visible,
.gold-offer-form input:focus-visible,
.gold-offer-form select:focus-visible {
  outline: 2px solid rgba(222, 181, 104, 0.75);
  outline-offset: 1px;
}

.offer-output {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 228, 179, 0.26);
  background: linear-gradient(135deg, rgba(213, 168, 79, 0.22), rgba(255, 255, 255, 0.04));
}

.offer-amount {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: #f8e6c0 !important;
  font-weight: 800;
}

.offer-disclaimer,
.file-note {
  font-size: 0.9rem;
}

.file-note {
  display: block;
  margin-top: 0.4rem;
  color: rgba(245, 239, 229, 0.7);
}

.gold-form-status {
  min-height: 1.5rem;
  margin: 0;
  font-size: 0.92rem;
}

.gold-form-status.is-success {
  color: #f8d594;
}

.gold-form-status.is-error {
  color: #ffd0b7;
}

.gold-buy-section {
  padding: 4.75rem 0;
}

.gold-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gold-buy-page .trust-point {
  padding: 1.35rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gold-buy-page .trust-point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gold-final-cta-section {
  padding-top: 0;
}

.gold-final-cta {
  background: linear-gradient(135deg, rgba(20, 16, 12, 0.97), rgba(99, 72, 33, 0.94));
}

@media (max-width: 1080px) {
  .gold-convert-cards {
    grid-template-columns: 1fr;
  }

  .gold-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .gold-buy-page .site-nav,
  .gold-buy-page .nav-actions {
    background: rgba(10, 9, 7, 0.97);
    border-color: rgba(255, 221, 164, 0.22);
  }
}

@media (max-width: 640px) {
  .gold-buy-hero {
    padding-top: 7rem;
  }

  .calculator-fields,
  .form-row,
  .gold-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* Service landing pages */
.service-landing-page {
  background:
    radial-gradient(circle at 8% 0%, rgba(213, 168, 79, 0.16), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(95, 70, 34, 0.26), transparent 28%),
    linear-gradient(180deg, #060504 0%, #0b0907 44%, #120d08 100%);
}

.service-landing-main {
  padding-bottom: 3rem;
}

.service-hero {
  position: relative;
  padding: 8.3rem 0 4.9rem;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(7, 6, 5, 0.97) 0%, rgba(25, 20, 14, 0.9) 52%, rgba(76, 56, 29, 0.73) 100%),
    radial-gradient(circle at 14% 20%, rgba(213, 168, 79, 0.2), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.07), transparent 19%);
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 94%);
  pointer-events: none;
}

.service-hero-layout,
.service-equipment-layout,
.service-form-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.service-hero-copy h1 {
  font-size: clamp(2.5rem, 5.7vw, 5rem);
  color: var(--text-inverse);
}

.service-hero-copy p {
  max-width: 64ch;
}

.service-hero-note {
  margin: 0;
  color: rgba(245, 239, 229, 0.88);
  font-size: 0.94rem;
}

.service-hero-visual,
.service-equipment-card,
.service-stat-card,
.service-detail-card,
.occasion-card,
.timeline-item,
.service-contact-card,
.service-form-card,
.policy-card,
.policy-feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 229, 184, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.service-hero-visual::before,
.service-equipment-card::before,
.service-stat-card::before,
.service-detail-card::before,
.occasion-card::before,
.timeline-item::before,
.service-contact-card::before,
.service-form-card::before,
.policy-card::before,
.policy-feature-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 221, 164, 0.18);
  pointer-events: none;
}

.service-hero-visual,
.service-equipment-card,
.service-contact-card,
.service-form-card,
.timeline-item {
  padding: 1.5rem;
}

.service-hero-bullets,
.contact-list,
.policy-card ul,
.policy-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-hero-bullets {
  display: grid;
  gap: 0.45rem;
}

.service-hero-bullets li,
.policy-card li {
  position: relative;
  padding-left: 1rem;
}

.service-hero-bullets li::before,
.policy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.service-highlights {
  position: relative;
  margin-top: -1.6rem;
  z-index: 2;
}

.service-highlight-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-highlight-grid li {
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 221, 164, 0.25);
  background: rgba(11, 10, 8, 0.9);
  text-align: center;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3d394;
  box-shadow: var(--shadow-sm);
}

.service-highlight-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-equipment-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.service-stat-card {
  padding: 1.25rem;
}

.service-stat-card span {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #f6d79d;
}

.service-stat-card p {
  margin: 0;
  color: rgba(245, 239, 229, 0.86);
}

.service-card-grid {
  display: grid;
  gap: 0.95rem;
}
.requires-product .builder-step h3 {
  display: none;
}
.requires-product.is-ready .builder-step h3 {
  display: block;
}

.service-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-detail-card,
.occasion-card {
  padding: 1.35rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-detail-card:hover,
.occasion-card:hover,
.timeline-item:hover,
.policy-card:hover,
.policy-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(213, 168, 79, 0.44);
}

.service-icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 0.95rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(183, 138, 63, 0.22), rgba(255, 255, 255, 0.1));
  color: #f2cb83;
}

.service-icon-wrap svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.service-price {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: #f3d394;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline-item {
  overflow: hidden;
}

.timeline-item::after {
  content: "";
  position: absolute;
  right: -0.6rem;
  top: 50%;
  width: 1.2rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(213, 168, 79, 0.7), transparent);
  transform: translateY(-50%);
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-step {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 225, 173, 0.34);
  background: rgba(214, 172, 90, 0.16);
  color: #f3d394;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list strong {
  color: #f8e6c0;
}

.service-request-form {
  display: grid;
  gap: 0.85rem;
}

.service-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.lux-field {
  position: relative;
  display: block;
}

.lux-field input,
.lux-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 1.2rem 0.95rem 0.68rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 224, 168, 0.24);
  background: rgba(0, 0, 0, 0.34);
  color: #fff8ea;
}

.lux-field textarea {
  min-height: 120px;
  resize: vertical;
}

.lux-field span {
  position: absolute;
  left: 0.9rem;
  top: 0.96rem;
  color: rgba(248, 240, 224, 0.76);
  font-size: 0.88rem;
  pointer-events: none;
  transition: transform var(--transition), font-size var(--transition), color var(--transition), top var(--transition);
}

.lux-field input:focus-visible,
.lux-field textarea:focus-visible {
  outline: 2px solid rgba(222, 181, 104, 0.75);
  outline-offset: 1px;
}

.lux-field input:focus + span,
.lux-field input:not(:placeholder-shown) + span,
.lux-field textarea:focus + span,
.lux-field textarea:not(:placeholder-shown) + span {
  top: 0.45rem;
  transform: translateY(-0.1rem);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3d394;
}

.service-form-fineprint,
.service-form-empty,
.service-form-status {
  margin: 0;
  font-size: 0.88rem;
}

.service-form-empty {
  color: rgba(245, 239, 229, 0.65);
}

.service-form-empty.is-hidden {
  display: none;
}

.service-form-status {
  min-height: 1.4rem;
}

.service-form-status.is-success {
  color: #f8d594;
}

.service-form-status.is-error {
  color: #ffd0b7;
}

/* Return policy page */
.policy-page {
  background:
    radial-gradient(circle at 10% 2%, rgba(213, 168, 79, 0.16), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(106, 78, 37, 0.25), transparent 24%),
    linear-gradient(180deg, #070605 0%, #0c0a08 42%, #130e09 100%);
}

.policy-main {
  padding-bottom: 2.5rem;
}

.policy-hero {
  padding: 8.2rem 0 2.6rem;
}

.policy-hero-inner {
  max-width: 880px;
}

.policy-kicker,
.policy-header-line {
  margin: 0;
  color: rgba(248, 240, 224, 0.92);
}

.policy-kicker {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.policy-header-line {
  font-size: 0.95rem;
}

.policy-hero h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5.3vw, 4.4rem);
  color: var(--text-inverse);
}

.policy-feature-strip {
  padding-bottom: 2rem;
}

.policy-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.policy-feature-card {
  padding: 1.25rem;
}

.policy-feature-card h2 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
}

.policy-sections {
  padding-top: 0.5rem;
}

.policy-sections .container {
  display: grid;
  gap: 1rem;
}

.policy-card {
  padding: 1.4rem;
}

.policy-index {
  margin-bottom: 0.7rem;
  color: #f3d394;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.policy-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.policy-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.policy-steps li {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 224, 170, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.policy-steps li::before {
  display: none;
}

.policy-steps h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.policy-note {
  margin-top: 0.95rem;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 224, 170, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.policy-bottom-cta {
  padding-top: 0;
}

.policy-updated-note {
  margin-top: 0.85rem;
}

.policy-updated-note p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(245, 239, 229, 0.72);
}

.policy-footer {
  padding: 1.2rem 0;
}

.policy-footer-line {
  text-align: center;
}

.policy-footer-line p {
  margin: 0;
  color: rgba(245, 239, 229, 0.85);
}

@media (max-width: 1080px) {
  .service-hero-layout,
  .service-equipment-layout,
  .service-form-layout,
  .service-card-grid-3,
  .service-card-grid-4,
  .service-timeline,
  .policy-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .service-hero-layout,
  .service-equipment-layout,
  .service-form-layout,
  .service-card-grid-3,
  .service-card-grid-4,
  .service-timeline,
  .policy-feature-grid,
  .service-highlight-grid {
    grid-template-columns: 1fr;
  }

  .service-highlight-grid-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding-top: 7rem;
  }

  .service-form-row,
  .service-equipment-stats {
    grid-template-columns: 1fr;
  }
}

/* Cuban configurator shop */
.cuban-shop-main {
  background:
    radial-gradient(circle at 8% 6%, rgba(213, 168, 79, 0.14), transparent 24%),
    radial-gradient(circle at 92% 10%, rgba(93, 68, 31, 0.26), transparent 30%),
    linear-gradient(180deg, #070605 0%, #0b0907 46%, #130e08 100%);
}

.cuban-hero {
  padding: 8.2rem 0 3.2rem;
}

.cuban-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.2rem;
  align-items: end;
}

.cuban-hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

.cuban-hero-badges span {
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 223, 168, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 239, 229, 0.9);
  font-size: 0.78rem;
}

.cuban-config-section {
  padding-top: 1.4rem;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 96;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 97;
  width: min(420px, 100%);
  height: 100dvh;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.9rem;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.98), rgba(20, 15, 11, 0.98));
  border-left: 1px solid rgba(255, 221, 164, 0.25);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.45);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-head h2 {
  font-size: 1.5rem;
}

.cart-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 221, 164, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff4dc;
  cursor: pointer;
}

.cart-items {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding-right: 0.2rem;
}

.cart-empty {
  margin: 0;
  color: rgba(245, 239, 229, 0.74);
}

.cart-item {
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 221, 164, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.cart-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.cart-item p {
  margin: 0;
  font-size: 0.86rem;
}

.cart-item-row {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 221, 164, 0.26);
  background: rgba(255, 255, 255, 0.06);
  color: #fff8ea;
  cursor: pointer;
}

.cart-remove {
  margin-top: 0.55rem;
  border: 0;
  background: transparent;
  color: #efc171;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.cart-footer {
  border-top: 1px solid rgba(255, 221, 164, 0.16);
  padding-top: 0.8rem;
}

.cart-subtotal {
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.cuban-config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 0.85rem;
  align-items: start;
}

.cuban-gallery-card,
.cuban-builder-card,
.cuban-filter-card,
.tool-card,
.admin-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255, 229, 184, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.cuban-gallery-card::before,
.cuban-builder-card::before,
.cuban-filter-card::before,
.tool-card::before,
.admin-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 221, 164, 0.18);
  pointer-events: none;
}

.cuban-gallery-card,
.cuban-builder-card,
.cuban-filter-card,
.tool-card,
.admin-card {
  padding: 1rem;
}

.cuban-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 221, 164, 0.22);
  background: linear-gradient(160deg, rgba(16, 14, 11, 0.95), rgba(36, 27, 16, 0.88));
  min-height: 490px;
  display: grid;
  place-items: center;
}

.placeholder-image-block {
  width: calc(100% - 2rem);
  min-height: 420px;
  border-radius: 16px;
  border: 1px solid rgba(255, 226, 176, 0.26);
  display: grid;
  place-items: center;
  gap: 0;
  text-align: center;
  padding: 0;
  color: #fff5e1;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(31, 24, 15, 0.8), rgba(16, 13, 10, 0.95));
}

.placeholder-image-block p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #f9e8c6;
}

.placeholder-image-block small {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 240, 224, 0.78);
}

.gallery-media-asset {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-media-caption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 226, 176, 0.28);
  background: rgba(11, 8, 6, 0.72);
  letter-spacing: 0.08em;
}

.placeholder-image-block[data-color="white"] {
  background:
    linear-gradient(145deg, rgba(42, 43, 45, 0.78), rgba(19, 22, 26, 0.94)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.015) 10px, rgba(255, 255, 255, 0.015) 20px);
}

.placeholder-image-block[data-color="rose"] {
  background:
    linear-gradient(145deg, rgba(58, 34, 29, 0.78), rgba(31, 17, 14, 0.94)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.01) 10px, rgba(255, 255, 255, 0.01) 20px);
}

.gallery-fullscreen-toggle {
  position: absolute;
  bottom: 0.85rem;
  border: 1px solid rgba(255, 222, 166, 0.24);
  border-radius: 999px;
  min-height: 38px;
  padding: 0.4rem 0.9rem;
  background: rgba(16, 13, 10, 0.82);
  color: #fff7e7;
  cursor: pointer;
}

.gallery-fullscreen-toggle {
  right: 0.85rem;
}

.cuban-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.cuban-gallery-thumbs button,
.option-grid button {
  border: 1px solid rgba(255, 222, 166, 0.2);
  border-radius: 12px;
  min-height: 42px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 239, 229, 0.9);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), color var(--transition);
}

.cuban-gallery-thumbs button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 0.18rem;
  min-height: 56px;
  padding: 0.55rem 0.65rem;
}

.gallery-thumb-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(245, 239, 229, 0.72);
}

.cuban-gallery-thumbs button:hover,
.cuban-gallery-thumbs button:focus-visible,
.option-grid button:hover,
.option-grid button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(213, 168, 79, 0.6);
  background: rgba(213, 168, 79, 0.12);
  outline: none;
}

.cuban-gallery-thumbs button.is-active,
.option-grid button.is-active {
  border-color: var(--gold);
  background: rgba(213, 168, 79, 0.16);
  color: #ffe9c0;
}

.builder-step {
  margin-bottom: 0.7rem;
}

.builder-step h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  margin-bottom: 0.45rem;
}

.builder-step h3 {
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.builder-step-label {
  margin: 0 0 0.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d3a550;
  font-size: 0.72rem;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.option-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.option-product-grid button {
  min-height: 72px;
  text-align: left;
  padding: 0.8rem;
  font-weight: 700;
}

.product-gate-note {
  margin: 0.2rem 0 0.8rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 221, 164, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 239, 229, 0.85);
  font-size: 0.88rem;
}

.requires-product {
  display: grid;
  gap: 0.3rem;
}

.option-grid-tight button {
  min-width: 70px;
}

.option-empty {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.8rem;
  border-radius: 10px;
  border: 1px dashed rgba(255, 221, 164, 0.26);
  color: rgba(245, 239, 229, 0.66);
}

.config-alert {
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 226, 176, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 239, 229, 0.82);
  font-size: 0.9rem;
}

.final-config-card,
.price-live-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 222, 166, 0.2);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem;
  margin-top: 0.65rem;
}

.final-config-card h3,
.price-live-card .live-price {
  color: #fff4dc;
}

.final-config-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.final-config-grid dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 229, 0.62);
}

.final-config-grid dd {
  margin: 0.12rem 0 0;
  color: #fff8ea;
}

.compare-price span {
  text-decoration: line-through;
  color: rgba(245, 239, 229, 0.74);
}

.price-note,
.price-lock-note {
  font-size: 0.9rem;
  color: rgba(245, 239, 229, 0.78);
}

.price-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin: 0.55rem 0;
}

.compact-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.compact-price-line span {
  color: rgba(245, 239, 229, 0.78);
}

.compact-price-line strong {
  font-size: 1.2rem;
}

@media (max-width: 1080px) {
  .cuban-hero-layout,
  .cuban-config-layout {
    grid-template-columns: 1fr;
  }

  .cuban-hero-badges {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .cuban-hero {
    padding-top: 7.6rem;
  }

  .cuban-gallery-main {
    min-height: 380px;
  }

  .placeholder-image-block {
    min-height: 310px;
  }

  .cuban-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-drawer {
    width: min(380px, 100%);
  }
}

@media (max-width: 640px) {
  .cuban-hero {
    padding-top: 7rem;
  }

  .option-product-grid {
    grid-template-columns: 1fr;
  }

  .header-cart-trigger {
    min-height: 40px;
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
  }

  .price-actions {
    grid-template-columns: 1fr;
  }

  .cart-footer-actions {
    grid-template-columns: 1fr;
  }

  .tool-card,
  .cuban-gallery-card,
  .cuban-builder-card,
  .cuban-filter-card {
    padding: 1rem;
  }
}


/* ============================================================
   HANDS OF GOLD — HOMEPAGE REFINEMENT V1
   Scoped to .home-page so shop, repairs, engraving and gold
   pages keep their existing layouts and functionality.
   ============================================================ */

.home-page {
  --bg: #080706;
  --bg-soft: #100e0b;
  --surface: rgba(15, 13, 10, 0.88);
  --surface-strong: rgba(22, 18, 13, 0.95);
  --text: #f3ecdf;
  --text-soft: #c8baa3;
  --gold: #d2ad62;
  --gold-deep: #a97d32;
  --line: rgba(232, 201, 144, 0.16);
  --line-strong: rgba(222, 181, 104, 0.34);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

.home-page .section {
  padding: 4.4rem 0;
}

.home-page .metals-ticker-inner {
  min-height: 44px;
}

.home-page .metals-label,
.home-page .metals-updated {
  font-size: 0.72rem;
}

.home-page .site-header {
  padding: 0.65rem 0;
}

.home-page .brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
}

.home-page .brand-name {
  font-size: 1.02rem;
}

.home-page .brand-subtitle {
  font-size: 0.74rem;
}

.home-page .site-nav {
  gap: 1.05rem;
}

.home-page .site-nav a,
.home-page .nav-actions a {
  font-size: 0.86rem;
}

.home-page .nav-actions > a:not(.nav-call) {
  display: none;
}

.home-page .shop-promo-inner {
  padding: 0.55rem 0;
}

.home-page .shop-promo-inner p {
  font-size: 0.86rem;
}

.home-page .shop-promo-cta {
  min-height: 38px;
  padding: 0.45rem 0.95rem;
}

/* Hero keeps the site's identity, but makes the product the visual focus. */
.home-page .hero-section {
  padding: 5.2rem 0 4.6rem;
}

.home-page .hero-backdrop {
  background:
    radial-gradient(circle at 12% 10%, rgba(213, 168, 79, 0.18), transparent 27%),
    linear-gradient(135deg, #080706 0%, #100d09 52%, #171109 100%);
}

.home-page .hero-backdrop::after {
  opacity: 0.3;
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-page .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.2vw, 6.4rem);
  line-height: 0.93;
}

.home-page .hero-text {
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-page .hero-actions {
  margin: 1.65rem 0;
  gap: 0.7rem;
}

.home-page .hero-trust {
  gap: 0.55rem;
}

.home-page .hero-trust span {
  padding: 0.52rem 0.78rem;
  font-size: 0.78rem;
}

.home-page .hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(238, 203, 141, 0.24);
  box-shadow: 0 34px 90px rgba(0,0,0,.48);
  background: #100d09;
}

.home-page .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82), transparent 45%);
  pointer-events: none;
}

.home-page .hero-media video {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.home-page .hero-media-caption {
  position: absolute;
  z-index: 2;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.28rem;
}

.home-page .hero-media-caption span,
.home-page .service-cta {
  color: #efcc89;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.home-page .hero-media-caption strong {
  color: #fff4df;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.home-page .hero-media-caption a {
  color: #efcc89;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Make Custom Jewelry unmistakably important. */
.home-page .piece-builder-section {
  padding-top: 4.6rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 168, 79, 0.11), transparent 38%),
    #0b0907;
}

.home-page .piece-builder-section .section-header {
  margin-bottom: 1.5rem;
}

.home-page .ring-builder-frame {
  max-width: 1040px;
  border-radius: 18px;
}

/* Compact revenue cards instead of eight oversized generic boxes. */
.home-page .revenue-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.home-page .service-link {
  min-height: 205px;
  padding: 1.25rem;
  color: inherit;
}

.home-page .service-link .service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
}

.home-page .service-link .service-icon svg {
  width: 22px;
  height: 22px;
}

.home-page .service-link h3 {
  margin-bottom: 0.45rem;
  font-size: 1.22rem;
}

.home-page .service-link p {
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.9rem;
}

.home-page .service-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.9rem;
}

/* Trust becomes proof, not another wall of cards. */
.home-page .trust-section {
  padding: 4rem 0;
}

.home-page .trust-layout {
  align-items: center;
}

.home-page .trust-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-page .stat-card {
  min-height: 155px;
  padding: 1.2rem;
}

.home-page .stat-number {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.home-page .stat-label {
  font-size: 0.84rem;
}

/* Reviews: fewer cards, more readable. */
.home-page .review-card {
  flex: 0 0 calc((100% - 1rem) / 2);
  padding: 1.35rem;
}

.home-page .review-card p {
  color: var(--text-soft);
  line-height: 1.65;
}

.home-page .reviews-controls {
  margin-bottom: -0.25rem;
}

/* Visit section keeps map/contact, but tighter. */
.home-page .visit-layout {
  align-items: stretch;
}

.home-page .visit-cards {
  margin: 1.4rem 0;
}

.home-page .info-card {
  padding: 1.15rem;
}

.home-page .map-card iframe {
  min-height: 440px;
}

.home-page .site-footer {
  padding-top: 2.2rem;
}

/* Mobile */
@media (max-width: 980px) {
  .home-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-page .hero-media {
    min-height: 390px;
  }

  .home-page .hero-media video {
    min-height: 390px;
  }

  .home-page .revenue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .trust-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .section {
    padding: 3.2rem 0;
  }

  .home-page .brand-subtitle {
    display: none;
  }

  .home-page .hero-section {
    padding: 3.5rem 0 3rem;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(2.75rem, 14vw, 4.3rem);
  }

  .home-page .hero-actions {
    display: grid;
  }

  .home-page .hero-actions .button {
    width: 100%;
  }

  .home-page .hero-media {
    min-height: 310px;
  }

  .home-page .hero-media video {
    min-height: 310px;
  }

  .home-page .revenue-grid {
    grid-template-columns: 1fr;
  }

  .home-page .service-link {
    min-height: 170px;
  }

  .home-page .review-card {
    flex-basis: 100%;
  }

  .home-page .shop-promo-inner p {
    max-width: 68%;
  }
}


/* ============================================================
   HOMEPAGE SALES REFINEMENT V2
   - smaller hero
   - featured bracelets/rings
   - removes redundant promo/trust sections
   ============================================================ */
.home-page .hero-section {
  padding: 3.6rem 0 3.25rem;
}

.home-page .hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.home-page .hero-copy h1 {
  max-width: 690px;
  font-size: clamp(2.85rem, 5.25vw, 5.15rem);
  line-height: 0.95;
}

.home-page .hero-text {
  max-width: 620px;
  font-size: 1rem;
}

.home-page .hero-actions {
  margin: 1.25rem 0 1.15rem;
}

.home-page .hero-media,
.home-page .hero-media video {
  min-height: 390px;
}

.home-page .hero-media-caption strong {
  font-size: 1.35rem;
}

.home-page .featured-products-section {
  padding: 3.8rem 0 4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(207, 164, 82, 0.08), transparent 34%),
    #090806;
  border-top: 1px solid rgba(232, 201, 144, 0.12);
  border-bottom: 1px solid rgba(232, 201, 144, 0.12);
}

.home-page .featured-products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.6rem;
}

.home-page .featured-products-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
}

.home-page .featured-products-heading > p {
  max-width: 480px;
  margin: 0;
  line-height: 1.65;
}

.home-page .featured-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-page .featured-product-card {
  overflow: hidden;
  border: 1px solid rgba(232, 201, 144, 0.16);
  border-radius: 16px;
  background: rgba(18, 15, 11, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.home-page .featured-product-image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f0e8;
}

.home-page .featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.home-page .featured-product-card:hover .featured-product-image img {
  transform: scale(1.035);
}

.home-page .featured-product-copy {
  padding: 1rem 1rem 1.05rem;
}

.home-page .product-type {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: #e7c786;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-page .featured-product-copy h3 {
  min-height: 2.7em;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  line-height: 1.28;
}

.home-page .featured-product-copy p {
  min-height: 3.1em;
  margin-bottom: 0.8rem;
  font-size: 0.84rem;
  line-height: 1.5;
}

.home-page .featured-product-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(232, 201, 144, 0.12);
  padding-top: 0.75rem;
}

.home-page .product-price-call {
  color: #b8ad9d;
  font-size: 0.72rem;
}

.home-page .featured-product-actions a {
  color: #edca83;
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
}

.home-page .featured-products-footer {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.home-page .featured-products-footer .button {
  min-height: 46px;
  padding: 0.75rem 1.25rem;
}

/* Pull custom designer closer to the shopping section. */
.home-page .piece-builder-section {
  padding-top: 3.5rem;
}

/* Keep reviews useful without consuming too much vertical space. */
.home-page .reviews-section {
  padding-top: 3.6rem;
  padding-bottom: 3.8rem;
}

.home-page .review-card {
  padding: 1.15rem;
}

@media (max-width: 980px) {
  .home-page .hero-grid {
    grid-template-columns: 1fr;
  }
  .home-page .hero-media,
  .home-page .hero-media video {
    min-height: 330px;
  }
  .home-page .featured-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-page .hero-section {
    padding: 2.7rem 0 2.75rem;
  }
  .home-page .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.75rem);
  }
  .home-page .hero-trust span:nth-child(3) {
    display: none;
  }
  .home-page .hero-media,
  .home-page .hero-media video {
    min-height: 260px;
  }
  .home-page .featured-products-section {
    padding: 3rem 0;
  }
  .home-page .featured-products-heading {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
  }
  .home-page .featured-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .home-page .featured-product-copy {
    padding: 0.8rem;
  }
  .home-page .featured-product-copy h3 {
    min-height: 0;
    font-size: 0.95rem;
  }
  .home-page .featured-product-copy p {
    display: none;
  }
  .home-page .featured-product-actions {
    display: grid;
    gap: 0.35rem;
  }
  .home-page .featured-product-actions a {
    font-size: 0.7rem;
  }
}


/* ============================================================
   HANDS OF GOLD — WHITE HOMEPAGE V3
   User-requested refinement:
   - white homepage background
   - removes revenue/service grid in HTML
   - only two featured bracelet products
   - stronger verified Google review proof
   ============================================================ */

.home-page {
  --bg: #ffffff;
  --bg-soft: #fbf8f2;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-dark: #17120d;
  --text: #1b1712;
  --text-soft: #6e6457;
  --text-inverse: #ffffff;
  --gold: #c59a45;
  --gold-deep: #9a6e24;
  --line: rgba(70, 52, 27, 0.13);
  --line-strong: rgba(161, 116, 39, 0.34);
  --shadow-lg: 0 26px 68px rgba(74, 55, 29, 0.12);
  --shadow-md: 0 16px 38px rgba(74, 55, 29, 0.10);
  --shadow-sm: 0 8px 22px rgba(74, 55, 29, 0.08);
  background: #ffffff !important;
  color: var(--text);
}

.home-page .site-shell,
.home-page main,
.home-page .section,
.home-page .hero-section,
.home-page .piece-builder-section,
.home-page .featured-products-section,
.home-page .reviews-section,
.home-page .visit-section {
  background: #ffffff !important;
  color: var(--text);
}

/* White / ivory metals bar instead of a large dark band. */
.home-page .metals-ticker {
  background: linear-gradient(90deg, #fbf8f1 0%, #f5ead5 60%, #ead2a3 100%);
  border-bottom: 1px solid rgba(155, 110, 36, 0.18);
  box-shadow: none;
}

.home-page .metals-ticker::after {
  display: none;
}

.home-page .metals-label,
.home-page .metals-updated {
  color: #665844;
}

.home-page .metal-chip {
  background: rgba(255,255,255,.78);
  border-color: rgba(135, 96, 32, .18);
  color: #2a2117;
}

.home-page .metal-chip strong {
  color: #9a6e24;
}

/* White luxury navigation. */
.home-page .site-header,
.home-page .site-header.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(85, 63, 29, .11);
  box-shadow: 0 8px 24px rgba(62, 44, 20, .05);
  backdrop-filter: blur(14px);
}

.home-page .site-header::after,
.home-page .site-header.scrolled::after {
  background: transparent;
}

.home-page .brand-name,
.home-page .site-nav a,
.home-page .nav-actions a {
  color: #211a12;
}

.home-page .brand-subtitle {
  color: #796d5e;
}

.home-page .nav-call {
  background: #c59a45;
  color: #17120d !important;
  border-color: #c59a45;
}

.home-page .nav-toggle {
  color: #211a12;
}

/* Clean white hero with the existing video as the luxury focal point. */
.home-page .hero-section {
  border-bottom: 1px solid rgba(80, 57, 24, .09);
}

.home-page .hero-backdrop {
  background:
    radial-gradient(circle at 13% 15%, rgba(197,154,69,.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fcfaf6 58%, #f7efe1 100%) !important;
}

.home-page .hero-backdrop::after {
  opacity: .12;
}

.home-page .hero-copy h1,
.home-page h2,
.home-page h3 {
  color: #18130e;
}

.home-page p,
.home-page .hero-text {
  color: #6e6457;
}

.home-page .hero-trust span {
  background: #fff;
  color: #4c4235;
  border-color: rgba(115, 82, 31, .15);
  box-shadow: 0 5px 14px rgba(76, 54, 21, .05);
}

.home-page .button-primary {
  background: linear-gradient(135deg, #d8b566, #bd8e35);
  color: #17120d;
  border-color: #bd8e35;
}

.home-page .button-secondary {
  background: #fff;
  color: #2a2117;
  border-color: rgba(153, 108, 34, .34);
  box-shadow: none;
}

/* Featured products: only two bracelets, wider cards, white merchandise presentation. */
.home-page .featured-products-section {
  background: #ffffff !important;
  border-top: 0;
  border-bottom: 1px solid rgba(78, 56, 23, .09);
}

.home-page .featured-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin: 0 auto;
  gap: 1rem;
}

.home-page .featured-product-card {
  background: #ffffff;
  border: 1px solid rgba(88, 62, 24, .13);
  box-shadow: 0 14px 34px rgba(65, 46, 18, .08);
}

.home-page .featured-product-image {
  background: #f8f6f1;
  aspect-ratio: 4 / 3;
}

.home-page .featured-product-copy h3 {
  color: #1d1710;
}

.home-page .featured-product-copy p,
.home-page .product-price-call {
  color: #756a5d;
}

.home-page .product-type,
.home-page .featured-product-actions a {
  color: #9b7028;
}

.home-page .featured-product-actions {
  border-top-color: rgba(88, 62, 24, .10);
}

/* Custom designer remains white and prominent. */
.home-page .piece-builder-section {
  background: #fbfaf7 !important;
  border-top: 1px solid rgba(79, 57, 24, .08);
  border-bottom: 1px solid rgba(79, 57, 24, .08);
}

.home-page .ring-builder-frame {
  background: #ffffff;
  border-color: rgba(101, 74, 30, .14);
  box-shadow: 0 18px 50px rgba(74, 52, 20, .08);
}

/* Reviews: make the reputation number the hero of this section. */
.home-page .reviews-section {
  background: #ffffff !important;
}

.home-page .review-proof-heading {
  max-width: 820px;
}

.home-page .review-proof-stars {
  margin: .15rem 0 .75rem;
  color: #c2953d;
  font-size: 1.55rem;
  letter-spacing: .12em;
}

.home-page .review-proof-heading h2 {
  margin-bottom: .7rem;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
}

.home-page .review-proof-heading > p {
  max-width: 690px;
  margin: 0 auto .8rem;
}

.home-page .review-proof-link {
  display: inline-block;
  color: #946820;
  font-size: .88rem;
  font-weight: 800;
}

.home-page .review-card {
  background: #ffffff;
  border: 1px solid rgba(85, 61, 24, .12);
  box-shadow: 0 10px 26px rgba(70, 49, 17, .06);
}

.home-page .review-card h3 {
  color: #1d1710;
}

.home-page .review-card p {
  color: #675d50;
}

.home-page .slider-button {
  background: #fff;
  color: #2b2116;
  border-color: rgba(143, 99, 31, .26);
}

.home-page .slider-dot {
  background: rgba(145, 103, 35, .22);
}

.home-page .slider-dot.active {
  background: #b98734;
}

/* Visit cards / map. */
.home-page .visit-section {
  background: #fbfaf7 !important;
  border-top: 1px solid rgba(79, 57, 24, .08);
}

.home-page .info-card,
.home-page .map-card {
  background: #ffffff;
  border-color: rgba(87, 62, 24, .12);
  box-shadow: 0 12px 30px rgba(65, 46, 18, .06);
}

.home-page .info-card h3 {
  color: #1d1710;
}

.home-page .info-card p,
.home-page .info-card li {
  color: #6e6457;
}

/* White / ivory footer so the homepage reads consistently from top to bottom. */
.home-page .site-footer {
  background: #f7f3eb;
  color: #655b4d;
  border-top: 1px solid rgba(79, 57, 24, .10);
}

.home-page .footer-column h3,
.home-page .footer-brand h2,
.home-page .footer-column a {
  color: #211a12;
}

.home-page .footer-brand p,
.home-page .footer-bottom {
  color: #756a5c;
}

.home-page .footer-bottom {
  border-top-color: rgba(79, 57, 24, .10);
}

@media (max-width: 640px) {
  .home-page .featured-product-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .home-page .featured-product-image {
    aspect-ratio: 4 / 3;
  }
}


/* ============================================================
   HANDS OF GOLD — WHITE HOMEPAGE V4
   Prominent mid-page phone + address band
   ============================================================ */

.home-page .home-contact-band {
  padding: 3.2rem 0;
  background:
    linear-gradient(135deg, #f9f5ec 0%, #fffdfa 52%, #f2e3c7 100%);
  border-top: 1px solid rgba(139, 97, 29, .14);
  border-bottom: 1px solid rgba(139, 97, 29, .14);
}

.home-page .home-contact-band-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .home-contact-band .eyebrow {
  margin-bottom: .65rem;
}

.home-page .home-contact-phone {
  display: inline-block;
  color: #18130e;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.4vw, 5.8rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.03em;
  margin-bottom: .7rem;
}

.home-page .home-contact-address {
  display: inline-block;
  max-width: 1000px;
  color: #9a6e24;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.home-page .home-contact-phone:hover,
.home-page .home-contact-address:hover {
  color: #b68734;
}

.home-page .home-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.4rem;
}

.home-page .review-proof-heading h2 {
  font-size: clamp(2.3rem, 4.4vw, 4rem);
}

@media (max-width: 640px) {
  .home-page .home-contact-band {
    padding: 2.5rem 0;
  }

  .home-page .home-contact-phone {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .home-page .home-contact-address {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .home-page .home-contact-actions {
    display: grid;
    width: 100%;
  }

  .home-page .home-contact-actions .button {
    width: 100%;
  }
}


/* ============================================================
   HANDS OF GOLD — WHITE HOMEPAGE V5
   - Larger physical location section
   - 8 longer review cards
   ============================================================ */

.home-page .review-card-long {
  min-height: 270px;
}

.home-page .review-card-long p {
  font-size: 1rem;
  line-height: 1.7;
}

.home-page .reviews-controls {
  margin-bottom: 1rem;
}

.home-page .visit-content h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.home-page .visit-highlight {
  display: grid;
  gap: .45rem;
  margin: 1.1rem 0 1.5rem;
}

.home-page .visit-highlight-address {
  color: #18130e;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

.home-page .visit-highlight-hours {
  color: #9a6e24;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.15;
}

.home-page .visit-cards {
  margin-top: 1.2rem;
}

@media (max-width: 640px) {
  .home-page .review-card-long {
    min-height: auto;
  }
}


/* ============================================================
   HANDS OF GOLD — CURATED 30-PIECE DESIGN CATALOG
   ============================================================ */

.home-page .curated-catalog-section {
  background:#fff !important;
  border-bottom:1px solid rgba(79,57,24,.08);
}

.home-page .curated-catalog-heading {
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);
  gap:2.4rem;
  align-items:end;
  margin-bottom:1.6rem;
}

.home-page .curated-catalog-heading h2 {
  margin:.35rem 0 0;
  max-width:780px;
  font-size:clamp(2.5rem,5vw,4.7rem);
  line-height:.97;
}

.home-page .curated-catalog-heading > p {
  color:#6f6457;
  line-height:1.7;
  margin:0;
}

.home-page .catalog-filter-row {
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin-bottom:1.35rem;
}

.home-page .catalog-filter {
  appearance:none;
  border:1px solid rgba(149,104,32,.22);
  background:#fff;
  color:#4b4032;
  min-height:40px;
  padding:.5rem .9rem;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}

.home-page .catalog-filter.is-active,
.home-page .catalog-filter:hover {
  background:#c89c43;
  border-color:#c89c43;
  color:#17120d;
}

.home-page .catalog-product-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:.9rem;
}

.home-page .catalog-product-card {
  min-width:0;
  background:#fff;
  border:1px solid rgba(89,63,25,.12);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(70,49,17,.07);
  display:flex;
  flex-direction:column;
}

.home-page .catalog-product-card[hidden] {
  display:none !important;
}

.home-page .catalog-product-image {
  display:block;
  background:#f7f4ee;
  aspect-ratio:1/1;
  overflow:hidden;
}

.home-page .catalog-product-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}

.home-page .catalog-product-card:hover .catalog-product-image img {
  transform:scale(1.035);
}

.home-page .catalog-product-copy {
  padding:1rem;
  display:flex;
  flex-direction:column;
  flex:1;
}

.home-page .catalog-product-meta {
  display:flex;
  justify-content:space-between;
  gap:.5rem;
  color:#9b7028;
  font-size:.67rem;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.home-page .catalog-product-copy h3 {
  font-size:1.18rem;
  margin:.45rem 0 .35rem;
  color:#1b160f;
}

.home-page .catalog-product-copy p {
  margin:0 0 .9rem;
  color:#756a5c;
  font-size:.86rem;
  line-height:1.5;
}

.home-page .catalog-product-footer {
  margin-top:auto;
  border-top:1px solid rgba(89,63,25,.09);
  padding-top:.75rem;
  display:flex;
  justify-content:space-between;
  gap:.7rem;
  align-items:center;
  font-size:.76rem;
}

.home-page .catalog-product-footer span {
  color:#817567;
}

.home-page .catalog-product-footer a {
  color:#9b7028;
  font-weight:900;
  white-space:nowrap;
}

.home-page .curated-catalog-footer {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1.6rem;
}

@media (max-width:1050px) {
  .home-page .catalog-product-grid {
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:760px) {
  .home-page .curated-catalog-heading {
    grid-template-columns:1fr;
    gap:1rem;
  }
  .home-page .catalog-product-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:500px) {
  .home-page .catalog-product-grid {
    grid-template-columns:1fr;
  }
}


/* Added 2026-08-25: video product cards */
.home-page .catalog-product-video video { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s ease; }
.home-page .catalog-product-card:hover .catalog-product-video video { transform:scale(1.025); }

/* V8 catalog headline */
.home-page .fire-stock-heading{
  display:inline-block;
  margin:8px 0 10px;
  font-family:Impact, "Arial Black", system-ui, sans-serif;
  font-size:clamp(2rem,4.2vw,3.6rem) !important;
  line-height:.95;
  letter-spacing:.055em;
  text-transform:uppercase;
  background:linear-gradient(180deg,#fff4b8 0%,#ffd45b 25%,#ff9b1a 55%,#e94d12 82%,#7d1408 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 1px 0 #6d2507) drop-shadow(0 0 8px rgba(255,130,20,.38));
  position:relative;
}
.home-page .fire-stock-heading::after{
  content:"🔥";
  display:inline-block;
  margin-left:.28em;
  font-size:.72em;
  transform:translateY(-.04em);
  -webkit-text-fill-color:initial;
  color:initial;
  filter:drop-shadow(0 0 7px rgba(255,103,0,.42));
}

/* V9 reliability fixes */
.home-page .brand-logo,
.home-page .footer-logo {
  object-fit: contain;
  background: transparent;
}
.home-page .brand-logo { width: 58px; height: 58px; }
.home-page .footer-logo { width: 92px; height: 92px; }

.home-page .metals-ticker {
  position: relative;
  z-index: 30;
}
.home-page .metal-chip strong {
  min-width: 88px;
  display: inline-block;
}
.home-page .quick-services-section {
  padding-top: 3rem;
  padding-bottom: 1rem;
}
.home-page .quick-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.home-page .quick-service-card,
.home-page .store-policies-card {
  border: 1px solid rgba(160,120,55,.18);
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 16px 42px rgba(40,25,5,.07);
}
.home-page .quick-service-card h2,
.home-page .store-policies-card h2 {
  margin: .35rem 0 .7rem;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}
.home-page .quick-service-card p,
.home-page .store-policies-card p {
  line-height: 1.65;
}
.home-page .store-policies-section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
@media(max-width: 850px) {
  .home-page .quick-services-grid { grid-template-columns: 1fr; }
}

/* V10: gold-buying calculator */
.home-page .gold-calculator-section{
  scroll-margin-top: 120px;
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(209,160,67,.12), transparent 30%),
    linear-gradient(180deg,#fffdf8,#f8f1e5);
  border-top: 1px solid rgba(160,120,55,.14);
  border-bottom: 1px solid rgba(160,120,55,.14);
}
.home-page .gold-calculator-layout{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:2rem;
  align-items:center;
}
.home-page .gold-calculator-copy h2{
  margin:.35rem 0 .8rem;
  font-size:clamp(2rem,4vw,3.5rem);
}
.home-page .gold-calculator-copy p{
  max-width:650px;
  line-height:1.7;
}
.home-page .gold-calculator-live{
  display:inline-flex;
  gap:.45rem;
  margin-top:.7rem;
  padding:.75rem 1rem;
  border-radius:999px;
  background:#171109;
  color:#f3dfbb;
  font-weight:700;
}
.home-page .gold-calculator-card{
  padding:1.5rem;
  border:1px solid rgba(160,120,55,.2);
  border-radius:20px;
  background:#fff;
  box-shadow:0 20px 55px rgba(70,45,10,.1);
}
.home-page .gold-calculator-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.home-page .gold-calculator-fields label span{
  display:block;
  margin-bottom:.45rem;
  font-weight:800;
}
.home-page .gold-calculator-fields input,
.home-page .gold-calculator-fields select{
  width:100%;
  min-height:52px;
  padding:.75rem .85rem;
  border:1px solid rgba(50,40,25,.18);
  border-radius:12px;
  background:#fff;
  font:inherit;
}
.home-page .gold-calc-button{
  width:100%;
  margin-top:1rem;
}
.home-page .gold-calculator-result{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:1rem;
  margin-top:1rem;
  padding:1.15rem;
  border-radius:16px;
  background:#171109;
  color:#f8e6c0;
}
.home-page .gold-calculator-result span{
  font-size:.86rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.home-page .gold-calculator-result strong{
  font-size:clamp(1.8rem,4vw,3rem);
}
.home-page .gold-calculator-note{
  margin:.8rem 0 0;
  color:#756b5e;
  font-size:.86rem;
  line-height:1.5;
}
.home-page .gold-calculator-actions{
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  margin-top:1rem;
}
.home-page #jeweler-studio-widget{
  scroll-margin-top:130px;
}
@media(max-width:850px){
  .home-page .gold-calculator-layout{grid-template-columns:1fr;}
  .home-page .gold-calculator-fields{grid-template-columns:1fr;}
}

/* V11: products immediately under navigation */
.home-page .curated-catalog-section{
  scroll-margin-top:120px;
}
.home-page header + .curated-catalog-section{
  padding-top:1.35rem !important;
  padding-bottom:2.4rem !important;
}
.home-page header + .curated-catalog-section .section-header{
  margin-bottom:1rem !important;
}

.home-page .gold-calculator-fields{
  grid-template-columns:repeat(3,1fr) !important;
}
@media(max-width:850px){
  .home-page .gold-calculator-fields{grid-template-columns:1fr !important;}
}

/* V11: dependable in-page custom jewelry builder */
.home-page .piece-builder-section{
  scroll-margin-top:120px;
  background:linear-gradient(180deg,#0d0b09,#17110b);
  color:#fff7e9;
}
.home-page .piece-builder-section .section-header p{color:#d9cdbb;}
.home-page .custom-builder{
  display:grid;
  gap:1rem;
  max-width:1050px;
  margin:0 auto;
}
.home-page .custom-builder-step,
.home-page .custom-builder-summary{
  padding:1.35rem;
  border:1px solid rgba(239,204,137,.2);
  border-radius:18px;
  background:rgba(255,255,255,.045);
}
.home-page .custom-builder-step h3{
  margin:0 0 .85rem;
  color:#fff1d3;
}
.home-page .custom-choice-grid{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
}
.home-page .custom-choice{
  appearance:none;
  border:1px solid rgba(239,204,137,.35);
  border-radius:999px;
  padding:.7rem 1rem;
  background:rgba(0,0,0,.22);
  color:#f4eadb;
  font:inherit;
  font-weight:700;
  cursor:pointer;
}
.home-page .custom-choice:hover,
.home-page .custom-choice.is-selected{
  background:#d0a03f;
  border-color:#d0a03f;
  color:#171109;
}
.home-page .custom-builder-fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
}
.home-page .custom-builder-fields label span{
  display:block;
  margin-bottom:.45rem;
  font-weight:800;
}
.home-page .custom-builder-fields input,
.home-page .custom-builder-fields select,
.home-page .custom-builder-fields textarea{
  width:100%;
  padding:.8rem .9rem;
  border:1px solid rgba(239,204,137,.28);
  border-radius:12px;
  background:#fff;
  color:#171109;
  font:inherit;
}
.home-page .custom-notes-label{grid-column:1/-1;}
.home-page .custom-builder-summary{
  display:grid;
  gap:.85rem;
  background:linear-gradient(135deg,rgba(208,160,63,.17),rgba(255,255,255,.05));
}
.home-page .custom-builder-summary strong{
  display:block;
  margin-top:.3rem;
  font-size:clamp(1rem,2vw,1.35rem);
}
.home-page .custom-builder-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem;
}
.home-page .custom-copy-status{
  min-height:1.2rem;
  margin:0;
  color:#efcc89;
  font-weight:700;
}
@media(max-width:760px){
  .home-page .custom-builder-fields{grid-template-columns:1fr;}
  .home-page .custom-notes-label{grid-column:auto;}
}

/* V12: high-contrast custom jewelry studio */
.home-page .piece-builder-section{
  background:
    radial-gradient(circle at 50% 0%, rgba(210,160,63,.16), transparent 34%),
    linear-gradient(180deg,#0b0907 0%,#15100b 100%) !important;
  color:#fff7e8 !important;
  border-top:1px solid rgba(214,167,79,.24);
  border-bottom:1px solid rgba(214,167,79,.24);
}

.home-page .piece-builder-section .section-header .eyebrow{
  color:#e2b95f !important;
  font-weight:900;
  letter-spacing:.15em;
}

.home-page .piece-builder-section .section-header h2{
  color:#ffffff !important;
  text-shadow:0 2px 18px rgba(0,0,0,.35);
}

.home-page .piece-builder-section .section-header p{
  color:#e8ddcd !important;
  font-size:1rem;
  font-weight:600;
}

.home-page .custom-builder-step,
.home-page .custom-builder-summary{
  background:#17110b !important;
  border:1px solid rgba(224,181,96,.42) !important;
  box-shadow:0 16px 36px rgba(0,0,0,.22);
}

.home-page .custom-builder-step h3{
  color:#f5cf7b !important;
  font-weight:900;
}

.home-page .custom-choice{
  background:#2b241c !important;
  border-color:#6f5b3e !important;
  color:#ffffff !important;
  font-weight:800 !important;
  box-shadow:none !important;
}

.home-page .custom-choice:hover{
  background:#3a3025 !important;
  border-color:#c79a43 !important;
  color:#ffffff !important;
}

.home-page .custom-choice.is-selected{
  background:linear-gradient(180deg,#e5b94f,#c98c26) !important;
  border-color:#e9bf5c !important;
  color:#120d07 !important;
  box-shadow:0 0 0 2px rgba(239,204,137,.16), 0 8px 20px rgba(0,0,0,.2) !important;
}

.home-page .custom-builder-fields label span{
  color:#f0d7a5 !important;
  font-weight:900 !important;
}

.home-page .custom-builder-fields input,
.home-page .custom-builder-fields select,
.home-page .custom-builder-fields textarea{
  background:#fffdf8 !important;
  border:1px solid #d1ad69 !important;
  color:#171109 !important;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.04);
}

.home-page .custom-builder-fields input::placeholder,
.home-page .custom-builder-fields textarea::placeholder{
  color:#7b6f60 !important;
  opacity:1 !important;
}

.home-page .custom-builder-summary{
  background:linear-gradient(135deg,#21170d 0%,#17110b 58%,#2b1d0e 100%) !important;
}

.home-page .custom-builder-summary .eyebrow{
  color:#e2b95f !important;
}

.home-page .custom-builder-summary strong{
  color:#ffffff !important;
  text-shadow:0 1px 8px rgba(0,0,0,.3);
}

.home-page .custom-builder-summary .button-primary{
  background:linear-gradient(180deg,#e5b94f,#c98c26) !important;
  color:#120d07 !important;
  border-color:#e5b94f !important;
  font-weight:900 !important;
}

.home-page .custom-builder-summary .button-secondary{
  background:#fffdf8 !important;
  color:#171109 !important;
  border-color:#d1ad69 !important;
  font-weight:900 !important;
}

.home-page .custom-copy-status{
  color:#f3cc78 !important;
}

/* V13: larger top-left logo and remove oversized vertical gaps */
.home-page .site-header{
  min-height: 86px !important;
}
.home-page .header-inner,
.home-page .nav-container{
  min-height: 86px !important;
  align-items:center !important;
}
.home-page .brand,
.home-page .site-brand{
  display:flex !important;
  align-items:center !important;
  gap:.8rem !important;
}
.home-page .brand-logo,
.home-page .site-brand img,
.home-page header img[alt*="Hands of Gold"]{
  width: 108px !important;
  height: 108px !important;
  max-width:none !important;
  object-fit:contain !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}
@media(max-width:760px){
  .home-page .brand-logo,
  .home-page .site-brand img,
  .home-page header img[alt*="Hands of Gold"]{
    width:78px !important;
    height:78px !important;
  }
}

/* Tighten sections that were creating blank white space */
.home-page .hero-section,
.home-page .homepage-hero,
.home-page .hero,
.home-page .visit-section,
.home-page .contact-section,
.home-page .gold-calculator-section,
.home-page .quick-services-section{
  min-height:0 !important;
}
.home-page .hero-section,
.home-page .homepage-hero,
.home-page .hero{
  padding-top:2rem !important;
  padding-bottom:2.2rem !important;
}
.home-page .visit-section,
.home-page .contact-section{
  padding-top:2.25rem !important;
  padding-bottom:2.25rem !important;
}
.home-page .gold-calculator-section{
  padding-top:2.75rem !important;
  padding-bottom:2.75rem !important;
}

/* Remove any media placeholders that reserve huge space without content */
.home-page .hero-media:empty,
.home-page .hero-visual:empty,
.home-page .media-placeholder:empty,
.home-page .image-placeholder:empty{
  display:none !important;
}

/* Prevent oversized wrappers from forcing whitespace */
.home-page main > section{
  min-height:0 !important;
}
.home-page .container{
  min-height:0 !important;
}

.home-page .hero-brand-panel{
  min-height:320px !important;
  display:flex !important;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
  padding:2rem;
  border-radius:20px;
  background:linear-gradient(135deg,#0a0908,#1d130a);
  overflow:hidden;
}
.home-page .hero-brand-panel img{
  width:min(220px,34vw);
  height:auto;
  object-fit:contain;
}
.home-page .hero-brand-copy{
  display:grid;
  gap:.45rem;
  color:#fff;
}
.home-page .hero-brand-copy span{
  color:#e5b94f;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
}
.home-page .hero-brand-copy strong{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.5rem,3vw,2.5rem);
  line-height:1.1;
}
@media(max-width:760px){
  .home-page .hero-brand-panel{
    min-height:240px !important;
    flex-direction:column;
    text-align:center;
  }
}

/* V14: eliminate mobile blank gap from map/oversized visit media */
.home-page .visit-layout{
  align-items:start !important;
}
.home-page .map-card,
.home-page .map-card iframe{
  min-height:320px !important;
  height:320px !important;
}
@media(max-width:760px){
  .home-page .map-card{
    display:none !important;
  }
  .home-page .visit-layout{
    grid-template-columns:1fr !important;
  }
  .home-page .visit-section{
    padding-top:2rem !important;
    padding-bottom:2rem !important;
  }
  .home-page .site-footer{
    margin-top:0 !important;
    padding-top:1.5rem !important;
  }
  .home-page main > section:last-of-type{
    margin-bottom:0 !important;
  }
}

/* V16: remove phantom gap after Custom Jewelry */
.home-page [data-reveal],
.home-page .reviews-section *,
.home-page .visit-section *{
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
}

.home-page .reviews-section{
  min-height:0 !important;
  padding:2.4rem 0 !important;
  margin:0 !important;
}
.home-page .reviews-section .section-header{
  margin-bottom:1.25rem !important;
}
.home-page .reviews-shell{
  min-height:0 !important;
  margin:0 !important;
}
.home-page .reviews-viewport{
  min-height:0 !important;
}
.home-page .review-card{
  min-height:0 !important;
}

.home-page .visit-section{
  min-height:0 !important;
  padding:2.4rem 0 !important;
  margin:0 !important;
}
.home-page .visit-layout{
  min-height:0 !important;
  align-items:start !important;
}

@media(max-width:760px){
  .home-page .reviews-section{
    padding:1.8rem 0 !important;
  }
  .home-page .review-proof-heading{
    margin-bottom:1rem !important;
  }
  .home-page .reviews-shell{
    margin-top:0 !important;
  }
  .home-page .visit-section{
    padding:1.8rem 0 !important;
  }
  .home-page .map-card{
    display:none !important;
  }
  .home-page .visit-layout{
    grid-template-columns:1fr !important;
  }
  .home-page .site-footer{
    margin-top:0 !important;
  }
}

/* V17 robust mobile menu */
@media (max-width: 980px) {
  .home-page .nav-toggle {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 1002;
    cursor: pointer;
  }

  .home-page .site-nav {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 1001 !important;
    padding: 1rem !important;
    border: 1px solid rgba(180, 136, 54, .24) !important;
    border-radius: 16px !important;
    background: #fffaf2 !important;
    box-shadow: 0 18px 45px rgba(0,0,0,.18) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .35rem !important;
  }

  .home-page .site-nav.is-open,
  .home-page.nav-open .site-nav,
  body.nav-open .site-nav {
    display: flex !important;
  }

  .home-page .site-nav a {
    display: block !important;
    padding: .8rem .9rem !important;
    color: #1f1810 !important;
    font-weight: 800 !important;
    border-radius: 10px !important;
  }

  .home-page .site-nav a:hover,
  .home-page .site-nav a:focus-visible {
    background: #f3e6cc !important;
  }

  .home-page .site-header,
  .home-page .header-inner,
  .home-page .nav-container {
    position: relative !important;
    overflow: visible !important;
  }
}

/* V18 privacy / disclosure */
.home-page .privacy-consent{
  display:flex;
  align-items:flex-start;
  gap:.7rem;
  margin:1rem 0;
  padding:.9rem 1rem;
  border:1px solid rgba(194,147,57,.28);
  border-radius:12px;
  background:rgba(255,255,255,.06);
  color:inherit;
  line-height:1.45;
}
.home-page .privacy-consent input{
  width:18px;
  height:18px;
  margin-top:.15rem;
  flex:0 0 auto;
}
.home-page .privacy-consent a,
.sitewide-privacy-disclosure a{
  color:#b47b1f;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:2px;
}
.home-page .privacy-consent small{
  opacity:.86;
}
.policy-action-row{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  margin-top:1rem;
}
.sitewide-privacy-disclosure{
  border-top:1px solid rgba(95,70,28,.12);
  background:#f3eee5;
  color:#655b4d;
  font-size:.78rem;
}
.sitewide-privacy-inner{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
  padding:.85rem 0;
}

/* V19 financing / lease-to-own banner */
.home-page .payment-options-strip{
  scroll-margin-top:110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(232,184,82,.14), transparent 38%),
    linear-gradient(135deg,#090704 0%,#20150a 100%);
  color:#fff;
  border-top:1px solid rgba(212,168,78,.34);
  border-bottom:1px solid rgba(212,168,78,.34);
  padding:1.45rem 0 1.2rem;
}
.home-page .payment-options-inner{
  display:grid;
  gap:1rem;
}
.home-page .payment-options-copy{
  text-align:center;
}
.home-page .payment-options-eyebrow{
  margin:0 0 .35rem;
  color:#e7ba59;
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.home-page .payment-options-title{
  margin:0;
  color:#fff;
  font-size:clamp(1.75rem,4vw,2.9rem);
  line-height:1.04;
}
.home-page .payment-options-subtitle{
  max-width:780px;
  margin:.65rem auto 0;
  color:#eee3d1;
  line-height:1.55;
  font-weight:600;
}
.home-page .payment-options-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:.65rem;
}
.home-page .payment-option-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:.75rem 1.2rem;
  border:1px solid #e3b450;
  border-radius:999px;
  background:linear-gradient(180deg,#e6ba53,#c78b28);
  color:#140d05;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 10px 26px rgba(0,0,0,.18);
  transition:transform .18s ease, box-shadow .18s ease;
}
.home-page .payment-option-button:hover,
.home-page .payment-option-button:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}
.home-page .payment-options-disclosure{
  max-width:1020px;
  margin:0 auto;
  color:#cfc4b3;
  text-align:center;
  font-size:.75rem;
  line-height:1.5;
}
@media(max-width:700px){
  .home-page .payment-options-strip{padding:1.15rem 0;}
  .home-page .payment-options-actions{flex-direction:column;}
  .home-page .payment-option-button{width:100%;}
}

/* V20: laser engraving section */
.home-page .laser-engraving-section{
  scroll-margin-top:120px;
  padding:4rem 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(205,160,71,.12), transparent 30%),
    linear-gradient(180deg,#fffdf8,#f6efe2);
  border-top:1px solid rgba(145,105,43,.13);
  border-bottom:1px solid rgba(145,105,43,.13);
}
.home-page .laser-engraving-layout{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);
  gap:2rem;
  align-items:center;
}
.home-page .laser-engraving-copy h2{
  margin:.35rem 0 .8rem;
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.05;
}
.home-page .laser-engraving-copy > p{
  line-height:1.7;
  max-width:720px;
}
.home-page .laser-engraving-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin:1.15rem 0 1.35rem;
}
.home-page .laser-engraving-highlights span{
  padding:.6rem .85rem;
  border:1px solid rgba(168,126,51,.24);
  border-radius:999px;
  background:#fff;
  color:#2a2015;
  font-weight:800;
  font-size:.9rem;
}
.home-page .laser-engraving-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}
.home-page .laser-engraving-note{
  margin-top:1rem;
  color:#776b5b;
  font-size:.87rem;
}
.home-page .laser-engraving-card{
  min-height:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  padding:2rem;
  text-align:center;
  border-radius:22px;
  background:linear-gradient(145deg,#0b0907,#21160b);
  color:#fff;
  border:1px solid rgba(226,181,88,.32);
  box-shadow:0 24px 55px rgba(53,35,11,.16);
}
.home-page .laser-engraving-card .laser-icon{
  font-size:3rem;
  color:#e5b94f;
  text-shadow:0 0 20px rgba(229,185,79,.35);
}
.home-page .laser-engraving-card strong{
  font-size:1.5rem;
  letter-spacing:.08em;
  color:#f2cd78;
}
.home-page .laser-engraving-card span{
  font-weight:800;
}
.home-page .laser-engraving-card p{
  max-width:320px;
  color:#d8ccb8;
  line-height:1.55;
}
@media(max-width:820px){
  .home-page .laser-engraving-layout{grid-template-columns:1fr;}
  .home-page .laser-engraving-card{min-height:220px;}
}


/* V20.2 mobile live-metals space fill */
.home-page .metals-ticker { min-height: var(--metals-bar-height); }
.home-page .metals-ticker-inner { min-height: var(--metals-bar-height); }
@media (max-width: 860px) {
  .home-page .metals-ticker-inner {
    display:grid; grid-template-columns:1fr auto;
    grid-template-areas:"label updated" "prices prices";
    grid-template-rows:auto 1fr; align-items:center; align-content:center;
    gap:.2rem .55rem; padding:.32rem 0 .42rem;
  }
  .home-page .metals-label {
    grid-area:label; justify-self:start; font-size:.6rem; font-weight:800; letter-spacing:.15em;
  }
  .home-page .metals-updated {
    grid-area:updated; justify-self:end; font-size:.58rem; letter-spacing:.1em;
  }
  .home-page .metals-prices {
    grid-area:prices; width:100%; display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr)); gap:.38rem;
  }
  .home-page .metal-chip {
    min-width:0; min-height:43px; display:flex; flex-direction:column;
    align-items:center; justify-content:center; gap:0; padding:.28rem .25rem;
    border-radius:11px; background:rgba(255,255,255,.92);
    border:1px solid rgba(151,105,31,.20); box-shadow:0 4px 12px rgba(78,54,18,.06);
    color:#5d503f; font-size:.61rem; font-weight:800; line-height:1.05;
    text-transform:uppercase; letter-spacing:.07em; white-space:nowrap;
  }
  .home-page .metal-chip strong {
    min-width:0; margin-top:.16rem; color:#8f6420; font-size:.82rem;
    font-weight:900; line-height:1.05; letter-spacing:0; text-transform:none;
    font-variant-numeric:tabular-nums;
  }
}


/* V20.3 mobile sticky-offset gap fix */
@media (max-width: 860px) {
  :root { --metals-bar-height: 58px !important; }
  .home-page .metals-ticker,
  .home-page .metals-ticker-inner { min-height: 58px !important; }
  .home-page .metals-ticker-inner {
    gap: .18rem .5rem !important;
    padding: .28rem 0 .34rem !important;
  }
  .home-page .metals-prices { gap: .32rem !important; }
  .home-page .metal-chip {
    min-height: 31px !important;
    padding: .22rem .22rem !important;
  }
  .home-page .metal-chip strong { font-size: .86rem !important; }
}
@media (max-width: 640px) {
  :root { --metals-bar-height: 54px !important; }
  .home-page .metals-ticker,
  .home-page .metals-ticker-inner { min-height: 54px !important; }
  .home-page .metals-label,
  .home-page .metals-updated { font-size: .54rem !important; }
  .home-page .metal-chip { min-height: 29px !important; }
  .home-page .metal-chip strong { font-size: .82rem !important; }
}


/* V20.4 mobile compact header / no financing overlap */
@media (max-width: 860px) {
  .home-page .site-header,
  .home-page .site-header.scrolled {
    position: relative !important;
    top: auto !important;
    min-height: 0 !important;
    padding: .38rem 0 !important;
  }
  .home-page .nav-wrap {
    min-height: 0 !important;
    align-items: center !important;
  }
  .home-page .brand-logo,
  .home-page .site-brand img,
  .home-page header img[alt*="Hands of Gold"] {
    width: 62px !important;
    height: 62px !important;
  }
  .home-page .nav-toggle {
    width: 54px !important;
    height: 54px !important;
    border-radius: 14px !important;
  }
  .home-page .payment-options-strip {
    margin-top: 0 !important;
    padding-top: 1.55rem !important;
  }
  .home-page .payment-options-title {
    margin-top: 0 !important;
  }
}
@media (max-width: 640px) {
  .home-page .site-header,
  .home-page .site-header.scrolled {
    padding: .3rem 0 !important;
  }
  .home-page .brand-logo,
  .home-page .site-brand img,
  .home-page header img[alt*="Hands of Gold"] {
    width: 58px !important;
    height: 58px !important;
  }
  .home-page .brand-name { font-size: .98rem !important; }
  .home-page .nav-toggle { width: 50px !important; height: 50px !important; }
  .home-page .payment-options-strip { padding-top: 1.35rem !important; }
}


/* V20.5 first-visit 10% lead capture */
.home-page .lead-popup-card {
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
}
.home-page .lead-offer-terms {
  margin: .2rem 0 .35rem;
  color: rgba(246,231,202,.72);
  font-size: .74rem;
  line-height: 1.45;
}
.home-page .lead-contact-consent {
  display: flex !important;
  align-items: flex-start;
  gap: .55rem;
  margin: .25rem 0 .35rem;
  padding: .7rem .75rem;
  border: 1px solid rgba(255,224,168,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  color: rgba(246,231,202,.86) !important;
  font-size: .76rem !important;
  line-height: 1.4;
}
.home-page .lead-contact-consent input {
  width: 17px !important;
  height: 17px !important;
  min-height: 0 !important;
  flex: 0 0 auto;
  margin-top: .12rem;
  accent-color: #d5a84f;
}
.home-page .lead-popup-status.is-success {
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(229,185,79,.35);
  background: rgba(229,185,79,.11);
  color: #f8d594;
  font-weight: 800;
  line-height: 1.45;
}
@media (max-width: 640px) {
  .home-page .lead-popup { padding: .55rem; }
  .home-page .lead-popup-card { padding: 1.2rem; }
  .home-page .lead-popup-perks { gap: .28rem; }
}

/* V20.6 — high-contrast colorful 10% popup */
.home-page .lead-popup-overlay{background:rgba(12,7,20,.78)!important;backdrop-filter:blur(9px)!important}.home-page .lead-popup-card{color:#fff!important;background:radial-gradient(circle at 92% 8%,rgba(255,190,72,.42),transparent 28%),radial-gradient(circle at 4% 92%,rgba(223,62,155,.28),transparent 34%),linear-gradient(145deg,#121018 0%,#28142f 52%,#3e203c 76%,#6b431a 100%)!important;border:1px solid rgba(255,218,126,.62)!important;box-shadow:0 32px 80px rgba(13,5,18,.55)!important}.home-page .lead-popup-card h2,.home-page #lead-popup-title{color:#fff!important;-webkit-text-fill-color:#fff!important;text-shadow:0 2px 16px rgba(0,0,0,.45)!important}.home-page .lead-popup-eyebrow{color:#ffd86f!important;font-weight:900!important}.home-page .lead-popup-copy,.home-page .lead-popup-perks li,.home-page .lead-popup-fineprint,.home-page .lead-offer-terms,.home-page .lead-contact-consent,.home-page .lead-contact-consent span,.home-page .lead-consent,.home-page .lead-consent span,.home-page .lead-popup-status{color:#fff7e8!important;-webkit-text-fill-color:#fff7e8!important}.home-page .lead-popup-perks li{background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.10)!important;border-radius:12px!important;padding:.58rem .72rem .58rem 1.8rem!important}.home-page .lead-popup-perks li::before{background:#ffcf5a!important;box-shadow:0 0 12px rgba(255,207,90,.55)!important}.home-page .lead-popup-form label:not(.lead-contact-consent):not(.lead-consent):not(.lead-honeypot){color:#fff!important;-webkit-text-fill-color:#fff!important;font-weight:800!important}.home-page .lead-popup-form input:not([type=checkbox]):not(.lead-honeypot){background:#fffdf9!important;color:#24170d!important;-webkit-text-fill-color:#24170d!important;border:2px solid rgba(255,211,108,.62)!important;box-shadow:0 5px 14px rgba(0,0,0,.15)!important}.home-page .lead-popup-form input::placeholder{color:#766652!important;-webkit-text-fill-color:#766652!important;opacity:1!important}.home-page .lead-contact-consent,.home-page .lead-consent{background:rgba(255,255,255,.11)!important;border-color:rgba(255,221,145,.32)!important}.home-page .lead-contact-consent a,.home-page .lead-consent a,.home-page .lead-popup-fineprint a{color:#ffe47f!important;-webkit-text-fill-color:#ffe47f!important;text-decoration:underline!important}.home-page .lead-submit,.home-page #lead-submit{background:linear-gradient(90deg,#ffd65e 0%,#ffb22f 45%,#ff7d51 100%)!important;color:#211307!important;-webkit-text-fill-color:#211307!important;border:0!important;font-weight:950!important;box-shadow:0 12px 28px rgba(255,157,48,.35)!important}.home-page .lead-popup-close{background:rgba(255,255,255,.16)!important;color:#fff!important;border-color:rgba(255,255,255,.34)!important}.home-page .lead-popup-status.is-success{color:#fff2a6!important;-webkit-text-fill-color:#fff2a6!important;background:rgba(255,213,91,.12)!important}.home-page .lead-popup-status.is-error{color:#ffd6d6!important;-webkit-text-fill-color:#ffd6d6!important}@media(max-width:640px){.home-page .lead-popup-card{padding:1.05rem!important}.home-page .lead-popup-card h2,.home-page #lead-popup-title{font-size:1.75rem!important;line-height:1.05!important}.home-page .lead-popup-copy{font-size:.92rem!important}}

/* ===== V20.7: compact top of page ===== */

/* Trust band — replaces the buried hero's trust badges */
.home-page .trust-band{
  position:relative;
  z-index:10;
  background:linear-gradient(120deg,#0b0907 0%,#1a1109 100%);
  border-bottom:1px solid rgba(212,168,78,.22);
}
.home-page .trust-band-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:.35rem 1.4rem;
  padding:.5rem 0;
}
.home-page .trust-band-inner span{
  position:relative;
  color:#e8dcc4;
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  white-space:nowrap;
}
.home-page .trust-band-inner span + span::before{
  content:"";
  position:absolute;
  left:-.72rem;
  top:.28em;
  width:3px;
  height:3px;
  border-radius:50%;
  background:#d5a84f;
}

/* Financing strip — tighter, buttons in a row, collapsible terms */
.home-page .payment-options-strip{padding:1rem 0 .85rem;}
.home-page .payment-options-inner{gap:.7rem;}
.home-page .payment-options-title{font-size:clamp(1.35rem,3vw,2.2rem);}
.home-page .payment-options-subtitle{margin-top:.4rem;font-size:.92rem;}
.home-page .payment-options-eyebrow{font-size:.68rem;margin-bottom:.25rem;}
.home-page .payment-option-button{min-height:44px;padding:.6rem 1rem;font-size:.92rem;}

.home-page .payment-options-terms{
  max-width:1020px;
  margin:0 auto;
  text-align:center;
}
.home-page .payment-options-terms > summary{
  cursor:pointer;
  list-style:none;
  display:inline-block;
  padding:.15rem .2rem;
  color:#cfc4b3;
  font-size:.72rem;
  letter-spacing:.03em;
  text-decoration:underline;
  text-underline-offset:.22em;
  text-decoration-color:rgba(213,168,79,.5);
}
.home-page .payment-options-terms > summary::-webkit-details-marker{display:none;}
.home-page .payment-options-terms > summary:hover,
.home-page .payment-options-terms > summary:focus-visible{color:#f0e2c6;}
.home-page .payment-options-terms[open] > summary{margin-bottom:.4rem;}
.home-page .payment-options-terms .payment-options-disclosure{margin:0;}

/* Catalog heading — tighter, filters scroll on small screens */
.home-page .curated-catalog-heading{gap:.5rem;margin-bottom:1rem;}
.home-page .curated-catalog-heading p{margin-bottom:0;font-size:.92rem;}
.home-page .curated-catalog-section{padding-top:2.2rem;}

@media(max-width:700px){
  .home-page .payment-options-strip{padding:.85rem 0 .75rem;}
  .home-page .payment-options-actions{flex-direction:row;flex-wrap:wrap;gap:.45rem;}
  .home-page .payment-option-button{
    flex:1 1 auto;
    width:auto;
    min-width:0;
    padding:.55rem .5rem;
    font-size:.8rem;
    letter-spacing:-.01em;
  }
  .home-page .payment-options-subtitle{font-size:.86rem;line-height:1.45;}
  .home-page .trust-band-inner{gap:.25rem .9rem;padding:.42rem 0;}
  .home-page .trust-band-inner span{font-size:.62rem;letter-spacing:.08em;}
  .home-page .trust-band-inner span + span::before{left:-.5rem;}
  .home-page .curated-catalog-section{padding-top:1.6rem;}
  .home-page .catalog-filter-row{
    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:.4rem;
    padding-bottom:.3rem;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  .home-page .catalog-filter-row::-webkit-scrollbar{display:none;}
  .home-page .catalog-filter{flex:0 0 auto;white-space:nowrap;}
}

/* V20.7b: final top-of-page tightening */
@media(max-width:700px){
  .home-page .pay-btn-prefix{display:none;}
  .home-page .payment-options-actions{flex-wrap:nowrap;gap:.4rem;}
  .home-page .payment-option-button{flex:1 1 0;padding:.55rem .35rem;font-size:.82rem;}
  .home-page .payment-options-subtitle{font-size:.82rem;line-height:1.4;margin-top:.35rem;}
  .home-page .trust-band-inner{
    flex-wrap:nowrap;
    overflow-x:auto;
    justify-content:flex-start;
    gap:0 .85rem;
    padding:.34rem .9rem;
    scrollbar-width:none;
  }
  .home-page .trust-band-inner::-webkit-scrollbar{display:none;}
  .home-page .trust-band-inner span{font-size:.6rem;}
  .home-page .curated-catalog-section{padding-top:1.1rem;}
  .home-page .curated-catalog-heading{margin-bottom:.7rem;}
  .home-page .curated-catalog-heading p{font-size:.85rem;}
}

/* V20.7c: trust band wraps cleanly; apply buttons stay one tidy row */
@media(max-width:700px){
  .home-page .trust-band-inner{
    flex-wrap:wrap;
    overflow:visible;
    justify-content:center;
    gap:.18rem .8rem;
    padding:.36rem .75rem;
  }
  .home-page .payment-option-button{white-space:nowrap;font-size:.86rem;}
}

/* ===== V21.0 — phone number + Hablamos Español in the header ===== */
.home-page .header-phone{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:.1rem;
  line-height:1.1;
  text-decoration:none;
  white-space:nowrap;
}
.home-page .header-phone-number{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:.005em;
  color:#7b5516;
}
.home-page .header-phone-note{
  font-size:.66rem;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:#a57c2c;
}
.home-page .header-phone:hover .header-phone-number,
.home-page .header-phone:focus-visible .header-phone-number{color:#8f6620;}
.home-page .nav-wrap{gap:1rem;}

@media(max-width:1150px){
  .home-page .header-phone-number{font-size:1.15rem;}
  .home-page .header-phone-note{font-size:.6rem;letter-spacing:.1em;}
}
@media(max-width:860px){
  .home-page .header-phone{align-items:flex-end;margin-left:auto;}
  .home-page .header-phone-number{font-size:1.12rem;}
  .home-page .header-phone-note{font-size:.58rem;}
  .home-page .nav-toggle{margin-left:.6rem;}
}
@media(max-width:420px){
  .home-page .header-phone-number{font-size:1rem;}
  .home-page .header-phone-note{font-size:.54rem;letter-spacing:.07em;}
}
.home-page .site-nav a{white-space:nowrap;}

/* V21.0b — make room for the phone block as the window narrows */
@media(max-width:1300px){
  .home-page .brand-copy{display:none;}
  .home-page .brand{gap:0;}
}
@media(max-width:1150px){
  .home-page .site-nav{gap:.55rem;}
}
@media(max-width:1050px){
  /* the phone number itself is the call-to-action here */
  .home-page .nav-call{display:none;}
}
@media(max-width:940px){
  .home-page .site-nav a{font-size:.88rem;}
  .home-page .site-nav{gap:.45rem;}
}
/* below 860 the menu button takes over and the brand text returns */
@media(max-width:860px){
  .home-page .brand-copy{display:flex;}
  .home-page .brand{gap:.8rem;}
  .home-page .nav-call{display:block;}
}

/* V21.0c — breakpoints aligned to the real mobile-menu cutover (980px) */
@media (min-width:981px) and (max-width:1300px){
  .home-page .brand-copy{display:none;}
  .home-page .brand{gap:0;}
}
@media (min-width:981px) and (max-width:1060px){
  .home-page .nav-call{display:none;}   /* the phone number is the call action here */
  .home-page .site-nav{gap:.45rem;}
}
/* At 980 and below the menu button owns the nav, so the brand text and
   the Call Now button both come back. */
@media (max-width:980px){
  .home-page .brand-copy{display:flex;}
  .home-page .brand{gap:.85rem;}
  .home-page .nav-call{display:block;}
  .home-page .site-nav a{font-size:1rem;}
}

/* V21.2 — Sell Gold section: in-store offer sits with the calculator */
.home-page .sell-gold-instore{
  margin-top:1.6rem;
  padding-top:1.4rem;
  border-top:1px solid rgba(160,120,55,.22);
}
.home-page .sell-gold-instore h3{
  margin-bottom:.5rem;
  font-size:clamp(1.25rem,2.2vw,1.7rem);
}
.home-page .sell-gold-instore p{margin-bottom:1rem;}
/* Repairs + Engraving now sit as a pair */
.home-page .quick-services-pair{grid-template-columns:repeat(2,1fr);}
@media(max-width:820px){
  .home-page .quick-services-pair{grid-template-columns:1fr;}
}

/* ===== V21.3 — stop the sticky header covering section headings =====
   The header pins 58px down and is ~130px tall, so anything jumped to
   needs to clear ~190px. Several anchors had no offset at all. */
.home-page #top,
.home-page #home,
.home-page #featured-products,
.home-page #payment-options,
.home-page #build-your-ideas,
.home-page #gold-calculator,
.home-page #sell-gold,
.home-page #repairs,
.home-page #engraving,
.home-page #visit,
.home-page #reviews,
.home-page #store-policies{
  scroll-margin-top:205px;
}

/* Between 981px and 1150px the header is a little shorter */
@media (min-width:981px) and (max-width:1150px){
  .home-page #top,
  .home-page #home,
  .home-page #featured-products,
  .home-page #payment-options,
  .home-page #build-your-ideas,
  .home-page #gold-calculator,
  .home-page #sell-gold,
  .home-page #repairs,
  .home-page #engraving,
  .home-page #visit,
  .home-page #reviews,
  .home-page #store-policies{
    scroll-margin-top:195px;
  }
}

/* At 980px and below the header scrolls away with the page,
   so only a small breathing gap is needed. */
@media (max-width:980px){
  .home-page #top,
  .home-page #home,
  .home-page #featured-products,
  .home-page #payment-options,
  .home-page #build-your-ideas,
  .home-page #gold-calculator,
  .home-page #sell-gold,
  .home-page #repairs,
  .home-page #engraving,
  .home-page #visit,
  .home-page #reviews,
  .home-page #store-policies{
    scroll-margin-top:24px;
  }
}

/* V21.3b — the spot-price bar scrolls away, so the header must pin flush
   to the top instead of floating 58px down with page content above it. */
.home-page .site-header{top:0;}

/* header now covers 0–130px, so the jump offset comes down to match */
.home-page #top,
.home-page #home,
.home-page #featured-products,
.home-page #payment-options,
.home-page #build-your-ideas,
.home-page #gold-calculator,
.home-page #sell-gold,
.home-page #repairs,
.home-page #engraving,
.home-page #visit,
.home-page #reviews,
.home-page #store-policies{
  scroll-margin-top:152px;
}
@media (min-width:981px) and (max-width:1150px){
  .home-page #top,.home-page #home,.home-page #featured-products,.home-page #payment-options,
  .home-page #build-your-ideas,.home-page #gold-calculator,.home-page #sell-gold,.home-page #repairs,
  .home-page #engraving,.home-page #visit,.home-page #reviews,.home-page #store-policies{
    scroll-margin-top:145px;
  }
}
@media (max-width:980px){
  .home-page #top,.home-page #home,.home-page #featured-products,.home-page #payment-options,
  .home-page #build-your-ideas,.home-page #gold-calculator,.home-page #sell-gold,.home-page #repairs,
  .home-page #engraving,.home-page #visit,.home-page #reviews,.home-page #store-policies{
    scroll-margin-top:24px;
  }
}

/* V21.4 — calculator policy links (replaces the consent gate) */
.home-page .gold-policy-links{
  margin:.9rem 0 0;
  font-size:.82rem;
  color:#7a6d5c;
}
.home-page .gold-policy-links a{
  color:#8a6520;
  text-decoration:underline;
  text-underline-offset:.2em;
}


/* ===== Repair + Engraving luxury service cards — cream & velvet rose ===== */
.home-page .quick-services-section{
  padding-top:3rem;
  padding-bottom:1.25rem;
  background:linear-gradient(180deg,#fffdf9 0%,#fbf5f2 100%);
}
.home-page .quick-services-pair{
  grid-template-columns:repeat(2,minmax(0,1fr));
  align-items:stretch;
  gap:1.1rem;
}
.home-page .repair-feature-card,
.home-page .engraving-feature-card{
  position:relative;
  overflow:hidden;
  min-height:100%;
  padding:1.45rem;
  color:#5a3c4d;
  background:
    radial-gradient(circle at 96% 6%,rgba(199,162,178,.28),transparent 30%),
    linear-gradient(145deg,#fffaf5 0%,#f7ecef 58%,#eedce3 100%);
  border:1px solid rgba(166,116,139,.24);
  box-shadow:0 18px 44px rgba(92,55,72,.10);
}
.home-page .repair-feature-card::after,
.home-page .engraving-feature-card::after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-85px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(216,183,122,.22) 0%,rgba(216,183,122,0) 68%);
  pointer-events:none;
}
.home-page .repair-feature-card .eyebrow,
.home-page .engraving-feature-card .eyebrow{
  color:#9b5f7a;
  font-weight:900;
}
.home-page .service-kicker-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.75rem;
  margin-bottom:.25rem;
}
.home-page .service-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.36rem .68rem;
  border-radius:999px;
  background:#fffaf4;
  border:1px solid rgba(182,127,151,.3);
  color:#8f526d;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:0 7px 18px rgba(91,56,72,.06);
}
.home-page .repair-feature-card h2,
.home-page .engraving-feature-card h2{
  margin:.18rem 0 .65rem;
  color:#5a3c4d;
  font-size:clamp(1.55rem,2.2vw,2.05rem);
  line-height:1.08;
}
.home-page .service-lead{
  color:#6f5461!important;
  line-height:1.65!important;
  margin:0 0 .9rem;
}
.home-page .service-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.75rem;
  margin-bottom:.85rem;
}
.home-page .service-feature-block{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(174,125,146,.17);
  border-radius:14px;
  padding:.82rem;
  box-shadow:0 8px 18px rgba(91,56,72,.04);
}
.home-page .service-feature-block h3{
  margin:0 0 .35rem;
  color:#8f526d;
  font-size:.95rem;
}
.home-page .service-feature-block p{
  margin:0;
  color:#6f5962!important;
  line-height:1.5!important;
  font-size:.93rem;
}
.home-page .service-highlight-strip{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem;
  margin-bottom:.8rem;
}
.home-page .service-highlight-strip span{
  display:inline-flex;
  align-items:center;
  padding:.38rem .62rem;
  border-radius:999px;
  background:#fffaf6;
  border:1px solid rgba(175,127,148,.18);
  color:#7c4e62;
  font-size:.8rem;
  font-weight:800;
}
.home-page .service-note{
  color:#7a626c!important;
  line-height:1.55!important;
  margin:0 0 .9rem;
  font-size:.92rem;
}
.home-page .service-cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:.65rem;
  margin-top:auto;
}
.home-page .repair-feature-card .button-primary,
.home-page .engraving-feature-card .button-primary{
  background:linear-gradient(90deg,#a96d88 0%,#c08aa2 100%);
  color:#fff;
  border:0;
  box-shadow:0 10px 24px rgba(137,82,107,.22);
}
.home-page .repair-feature-card .button-primary:hover,
.home-page .engraving-feature-card .button-primary:hover{
  transform:translateY(-1px);
}
.home-page .repair-feature-card .button-secondary,
.home-page .engraving-feature-card .button-secondary{
  background:#fffaf4;
  border-color:rgba(162,112,135,.28);
  color:#6c4558;
}
.home-page .repair-feature-card .button-secondary:hover,
.home-page .engraving-feature-card .button-secondary:hover{
  background:#f6e8ed;
}
@media(max-width:920px){
  .home-page .service-feature-grid{grid-template-columns:1fr;}
}
@media(max-width:820px){
  .home-page .quick-services-pair{grid-template-columns:1fr;}
}
@media(max-width:640px){
  .home-page .service-kicker-row{flex-direction:column;align-items:flex-start;}
  .home-page .service-cta-row .button{width:100%;justify-content:center;}
}


/* ===== Vivid ad-style refresh for Repairs + Engraving ===== */
.home-page .quick-services-section{
  background:linear-gradient(180deg,#fffdf9 0%,#f6f1ea 100%);
}
.home-page .quick-services-pair{
  gap:1.25rem;
}
.home-page .repair-feature-card,
.home-page .engraving-feature-card{
  padding:1.5rem;
  border-radius:24px;
  overflow:hidden;
  isolation:isolate;
  min-height:100%;
}
.home-page .repair-feature-card::before,
.home-page .engraving-feature-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,0));
  z-index:-1;
}
.home-page .repair-feature-card{
  background:
    radial-gradient(circle at 88% 16%, rgba(76,166,255,.22), transparent 24%),
    radial-gradient(circle at 8% 88%, rgba(36,255,204,.14), transparent 28%),
    linear-gradient(145deg,#0e1723 0%,#15263b 42%,#204565 100%);
  border:1px solid rgba(100,166,219,.24);
  box-shadow:0 22px 52px rgba(9,17,28,.20);
  color:#eef7ff;
}
.home-page .engraving-feature-card{
  background:
    radial-gradient(circle at 92% 8%, rgba(255,210,96,.24), transparent 24%),
    radial-gradient(circle at 6% 88%, rgba(252,120,144,.16), transparent 28%),
    linear-gradient(145deg,#1a1119 0%,#3b1f34 45%,#7a3546 100%);
  border:1px solid rgba(255,205,140,.24);
  box-shadow:0 22px 52px rgba(33,11,22,.19);
  color:#fff7ef;
}
.home-page .repair-feature-card::after{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-70px;
  width:230px;
  height:230px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(58,220,255,.18) 0%,rgba(58,220,255,0) 68%);
  pointer-events:none;
  z-index:-1;
}
.home-page .engraving-feature-card::after{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-70px;
  width:230px;
  height:230px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,203,98,.18) 0%,rgba(255,203,98,0) 68%);
  pointer-events:none;
  z-index:-1;
}
.home-page .repair-feature-card .eyebrow,
.home-page .repair-feature-card h2,
.home-page .repair-feature-card h3,
.home-page .repair-feature-card p,
.home-page .repair-feature-card span,
.home-page .repair-feature-card strong{
  color:#eef7ff;
}
.home-page .engraving-feature-card .eyebrow,
.home-page .engraving-feature-card h2,
.home-page .engraving-feature-card h3,
.home-page .engraving-feature-card p,
.home-page .engraving-feature-card span,
.home-page .engraving-feature-card strong{
  color:#fff7ef;
}
.home-page .repair-feature-card .eyebrow{
  color:#98d8ff;
}
.home-page .engraving-feature-card .eyebrow{
  color:#ffd279;
}
.home-page .service-kicker-row{
  margin-bottom:.35rem;
}
.home-page .repair-feature-card .service-badge{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(161,223,255,.18);
  color:#d8f3ff;
  box-shadow:none;
}
.home-page .engraving-feature-card .service-badge{
  background:rgba(255,248,234,.1);
  border:1px solid rgba(255,224,171,.24);
  color:#ffe5b5;
  box-shadow:none;
}
.home-page .repair-feature-card h2,
.home-page .engraving-feature-card h2{
  font-size:clamp(1.65rem,2.35vw,2.22rem);
  margin:.22rem 0 .68rem;
  line-height:1.06;
}
.home-page .repair-feature-card .service-lead,
.home-page .repair-feature-card .service-note{
  color:#d9e9f7 !important;
}
.home-page .engraving-feature-card .service-lead,
.home-page .engraving-feature-card .service-note{
  color:#f8e7dc !important;
}
.home-page .repair-feature-card .service-feature-block{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(172,222,255,.14);
  box-shadow:none;
}
.home-page .engraving-feature-card .service-feature-block{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,225,176,.14);
  box-shadow:none;
}
.home-page .repair-feature-card .service-feature-block h3{
  color:#90eaff;
}
.home-page .engraving-feature-card .service-feature-block h3{
  color:#ffd98e;
}
.home-page .repair-feature-card .service-feature-block p{
  color:#ecf8ff !important;
}
.home-page .engraving-feature-card .service-feature-block p{
  color:#fff4e6 !important;
}
.home-page .repair-feature-card .service-highlight-strip span{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(145,228,255,.16);
  color:#dbf5ff;
}
.home-page .engraving-feature-card .service-highlight-strip span{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,226,181,.16);
  color:#fff0cf;
}
.home-page .repair-feature-card .button-primary{
  background:linear-gradient(90deg,#48c2ff 0%,#2fe0c6 100%);
  color:#0b1622;
  border:0;
  box-shadow:0 14px 30px rgba(10,26,40,.25);
}
.home-page .repair-feature-card .button-primary:hover{
  background:linear-gradient(90deg,#63cbff 0%,#51e8d2 100%);
}
.home-page .engraving-feature-card .button-primary{
  background:linear-gradient(90deg,#ffcc75 0%,#ff8d6c 100%);
  color:#2b1610;
  border:0;
  box-shadow:0 14px 30px rgba(37,16,21,.25);
}
.home-page .engraving-feature-card .button-primary:hover{
  background:linear-gradient(90deg,#ffd48d 0%,#ff9d80 100%);
}
.home-page .repair-feature-card .button-secondary{
  background:rgba(255,255,255,.08);
  border-color:rgba(145,228,255,.2);
  color:#eef9ff;
}
.home-page .engraving-feature-card .button-secondary{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,224,171,.2);
  color:#fff7ef;
}
.home-page .repair-feature-card .button-secondary:hover,
.home-page .engraving-feature-card .button-secondary:hover{
  background:rgba(255,255,255,.15);
}
@media(max-width:640px){
  .home-page .repair-feature-card,
  .home-page .engraving-feature-card{padding:1.2rem;}
}


/* ===== Engraving section refresh using promo artwork ===== */
.home-page .engraving-ad-card{
  background:
    radial-gradient(circle at 92% 10%, rgba(255,210,96,.22), transparent 22%),
    radial-gradient(circle at 6% 86%, rgba(255,121,145,.14), transparent 26%),
    linear-gradient(145deg,#181116 0%,#30202d 46%,#6e3144 100%);
}
.home-page .engraving-ad-layout{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(240px,.92fr);
  gap:1rem;
  align-items:stretch;
}
.home-page .engraving-ad-copy{
  display:flex;
  flex-direction:column;
}
.home-page .engraving-ad-card h2{
  font-size:clamp(1.75rem,2.7vw,2.45rem);
  margin:.12rem 0 .35rem;
}
.home-page .engraving-script-line{
  margin:0 0 .7rem;
  color:#ffdca1 !important;
  font-size:clamp(1.25rem,2vw,1.7rem);
  font-style:italic;
  line-height:1;
}
.home-page .engraving-highlight-strip{
  margin-bottom:.9rem;
}
.home-page .engraving-mini-grid{
  grid-template-columns:1fr;
  gap:.65rem;
}
.home-page .engraving-ad-visual{
  display:flex;
  align-items:stretch;
}
.home-page .engraving-ad-image{
  width:100%;
  height:100%;
  min-height:460px;
  object-fit:cover;
  object-position:center;
  border-radius:18px;
  border:1px solid rgba(255,223,167,.2);
  box-shadow:0 16px 36px rgba(18,10,15,.22);
  background:#130d11;
}
.home-page .engraving-info-bar{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin-top:auto;
  padding-top:.25rem;
}
.home-page .engraving-info-bar span{
  display:inline-flex;
  align-items:center;
  padding:.45rem .68rem;
  border-radius:999px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,224,171,.16);
  color:#fff0cf;
  font-size:.82rem;
  font-weight:700;
}
@media(max-width:1180px){
  .home-page .engraving-ad-layout{grid-template-columns:1fr;}
  .home-page .engraving-ad-image{min-height:340px;max-height:520px;}
}
@media(max-width:640px){
  .home-page .engraving-ad-image{min-height:280px;}
  .home-page .engraving-info-bar span{width:100%;justify-content:center;}
}


/* ===== Chocolate palette override for repair + engraving ads ===== */
.home-page .quick-services-section{
  background:linear-gradient(180deg,#f7f0e8 0%,#efe3d4 100%);
}
.home-page .repair-feature-card{
  background:
    radial-gradient(circle at 90% 12%, rgba(214,170,104,.16), transparent 22%),
    radial-gradient(circle at 8% 88%, rgba(120,74,39,.18), transparent 28%),
    linear-gradient(145deg,#2b1a12 0%,#4a2d1d 44%,#6e4124 100%);
  border:1px solid rgba(208,171,109,.22);
  box-shadow:0 22px 52px rgba(43,24,13,.22);
  color:#fff3e3;
}
.home-page .engraving-feature-card,
.home-page .engraving-ad-card{
  background:
    radial-gradient(circle at 92% 10%, rgba(232,189,122,.18), transparent 22%),
    radial-gradient(circle at 8% 86%, rgba(94,52,29,.18), transparent 26%),
    linear-gradient(145deg,#201410 0%,#3d261e 46%,#5d3527 100%);
  border:1px solid rgba(225,186,121,.22);
  box-shadow:0 22px 52px rgba(33,17,12,.22);
  color:#fff2df;
}
.home-page .repair-feature-card::after{
  background:radial-gradient(circle,rgba(228,193,125,.16) 0%,rgba(228,193,125,0) 68%);
}
.home-page .engraving-feature-card::after,
.home-page .engraving-ad-card::after{
  background:radial-gradient(circle,rgba(214,170,104,.18) 0%,rgba(214,170,104,0) 68%);
}
.home-page .repair-feature-card .eyebrow,
.home-page .repair-feature-card h2,
.home-page .repair-feature-card h3,
.home-page .repair-feature-card p,
.home-page .repair-feature-card span,
.home-page .repair-feature-card strong{
  color:#fff3e3;
}
.home-page .engraving-feature-card .eyebrow,
.home-page .engraving-feature-card h2,
.home-page .engraving-feature-card h3,
.home-page .engraving-feature-card p,
.home-page .engraving-feature-card span,
.home-page .engraving-feature-card strong,
.home-page .engraving-ad-card .eyebrow,
.home-page .engraving-ad-card h2,
.home-page .engraving-ad-card h3,
.home-page .engraving-ad-card p,
.home-page .engraving-ad-card span,
.home-page .engraving-ad-card strong{
  color:#fff2df;
}
.home-page .repair-feature-card .eyebrow{color:#f0c978;}
.home-page .engraving-feature-card .eyebrow,
.home-page .engraving-ad-card .eyebrow{color:#f4c97a;}
.home-page .repair-feature-card .service-badge{
  background:rgba(255,245,230,.08);
  border:1px solid rgba(240,201,120,.18);
  color:#f8ddb0;
}
.home-page .engraving-feature-card .service-badge,
.home-page .engraving-ad-card .service-badge{
  background:rgba(255,246,233,.08);
  border:1px solid rgba(244,201,122,.2);
  color:#fbe0b0;
}
.home-page .repair-feature-card .service-lead,
.home-page .repair-feature-card .service-note{color:#f0dfcf !important;}
.home-page .engraving-feature-card .service-lead,
.home-page .engraving-feature-card .service-note,
.home-page .engraving-ad-card .service-lead,
.home-page .engraving-ad-card .service-note{color:#f3e2d2 !important;}
.home-page .repair-feature-card .service-feature-block{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(240,201,120,.12);
}
.home-page .engraving-feature-card .service-feature-block,
.home-page .engraving-ad-card .service-feature-block{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(244,201,122,.12);
}
.home-page .repair-feature-card .service-feature-block h3,
.home-page .engraving-feature-card .service-feature-block h3,
.home-page .engraving-ad-card .service-feature-block h3{
  color:#f2c97c;
}
.home-page .repair-feature-card .service-feature-block p,
.home-page .engraving-feature-card .service-feature-block p,
.home-page .engraving-ad-card .service-feature-block p{
  color:#fff2df !important;
}
.home-page .repair-feature-card .service-highlight-strip span,
.home-page .engraving-feature-card .service-highlight-strip span,
.home-page .engraving-ad-card .service-highlight-strip span{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(243,201,124,.16);
  color:#ffe8c1;
}
.home-page .repair-feature-card .button-primary{
  background:linear-gradient(90deg,#e0b567 0%,#b97a38 100%);
  color:#2d180d;
  box-shadow:0 14px 30px rgba(34,17,10,.28);
}
.home-page .engraving-feature-card .button-primary,
.home-page .engraving-ad-card .button-primary{
  background:linear-gradient(90deg,#e5bc72 0%,#c18445 100%);
  color:#2c180e;
  box-shadow:0 14px 30px rgba(34,17,10,.28);
}
.home-page .repair-feature-card .button-primary:hover{
  background:linear-gradient(90deg,#e7c17d 0%,#c48743 100%);
}
.home-page .engraving-feature-card .button-primary:hover,
.home-page .engraving-ad-card .button-primary:hover{
  background:linear-gradient(90deg,#ecc985 0%,#c98d50 100%);
}
.home-page .repair-feature-card .button-secondary,
.home-page .engraving-feature-card .button-secondary,
.home-page .engraving-ad-card .button-secondary{
  background:rgba(255,255,255,.08);
  border-color:rgba(243,201,124,.18);
  color:#fff2df;
}
.home-page .repair-feature-card .button-secondary:hover,
.home-page .engraving-feature-card .button-secondary:hover,
.home-page .engraving-ad-card .button-secondary:hover{
  background:rgba(255,255,255,.14);
}
.home-page .engraving-script-line{color:#f1c87a !important;}
.home-page .engraving-info-bar span{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(243,201,124,.16);
  color:#ffe8c1;
}
.home-page .engraving-ad-image{
  border:1px solid rgba(241,202,128,.18);
  box-shadow:0 16px 36px rgba(25,13,9,.28);
  background:#1f1410;
}


/* ===== Smaller engraving section height with updated promo image ===== */
.home-page .engraving-ad-layout{
  grid-template-columns:minmax(0,1.12fr) minmax(170px,.58fr);
  gap:.9rem;
  align-items:start;
}
.home-page .engraving-ad-visual{
  align-items:flex-start;
  justify-content:flex-end;
}
.home-page .engraving-ad-image{
  width:min(100%,330px);
  height:auto;
  min-height:0;
  max-height:360px;
  aspect-ratio:4 / 5;
  object-fit:cover;
  object-position:center center;
}
@media(max-width:1180px){
  .home-page .engraving-ad-layout{grid-template-columns:minmax(0,1fr) minmax(200px,.46fr);}
  .home-page .engraving-ad-image{width:min(100%,280px);max-height:300px;}
}
@media(max-width:920px){
  .home-page .engraving-ad-layout{grid-template-columns:1fr;}
  .home-page .engraving-ad-visual{justify-content:flex-start;}
  .home-page .engraving-ad-image{width:min(100%,320px);max-height:320px;}
}
@media(max-width:640px){
  .home-page .engraving-ad-image{width:100%;max-width:100%;max-height:260px;}
}

/* ===== V21.5 — legacy financing layout ===== */
.home-page .payment-options-split{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:1.5rem;
  align-items:center;
}
.home-page .payment-pane{min-width:0;}
.home-page .payment-pane-leasing{display:grid;gap:.75rem;align-content:center;}
.home-page .payment-pane-offer{
  position:relative;
  padding-left:1.5rem;
  border-left:1px solid rgba(214,171,84,.28);
}
.home-page .payment-options-split .payment-options-copy,
.home-page .payment-options-split .payment-options-terms{text-align:left;}
.home-page .payment-options-split .payment-options-subtitle{margin-left:0;max-width:none;}
.home-page .payment-options-split .payment-options-actions{justify-content:flex-start;}
.home-page .payment-options-split .payment-options-terms{margin:0;}
.home-page .payment-options-split .pay-btn-prefix{display:none;}
.home-page .payment-options-split .payment-option-button{padding:.7rem 1.15rem;}

.home-page .offer-form{display:grid;gap:.5rem;text-align:left;}
.home-page .offer-form-eyebrow{margin:0;color:#ffd86f;font-size:.7rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase;}
.home-page .offer-form-title{margin:0;color:#fff;font-size:clamp(1.3rem,2.3vw,1.85rem);line-height:1.1;}
.home-page .offer-form-copy{margin:0 0 .25rem;color:#efe2cb;font-size:.86rem;line-height:1.45;}
.home-page .offer-form-fields{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.5rem;}
.home-page .offer-field{display:grid;gap:.2rem;}
.home-page .offer-field span{color:#f6e7ca;font-size:.74rem;font-weight:700;letter-spacing:.04em;}
.home-page .offer-field input{
  width:100%;min-height:44px;padding:.55rem .7rem;border-radius:10px;
  border:2px solid rgba(255,211,108,.5);background:#fffdf9;color:#24170d;font-size:1rem;
}
.home-page .offer-field input:focus-visible{outline:2px solid rgba(255,214,120,.85);outline-offset:1px;}
.home-page .offer-consent{
  display:flex;align-items:flex-start;gap:.5rem;margin:.15rem 0 .1rem;padding:.5rem .6rem;
  border:1px solid rgba(255,224,168,.22);border-radius:10px;background:rgba(255,255,255,.07);
  color:#f0e3ca;font-size:.72rem;line-height:1.4;text-align:left;
}
.home-page .offer-consent input{width:17px;height:17px;min-height:0;flex:0 0 auto;margin-top:.1rem;accent-color:#d5a84f;}
.home-page .offer-consent a{color:#ffe47f;text-decoration:underline;text-underline-offset:.15em;}
.home-page .offer-submit{
  width:100%;min-height:52px;margin-top:.15rem;font-size:1.05rem;font-weight:900;
  background:linear-gradient(90deg,#ffd65e 0%,#ffb22f 45%,#ff7d51 100%);color:#211307;border:0;
}
.home-page .offer-status{min-height:1.1rem;margin:0;color:#f6e7ca;font-size:.82rem;line-height:1.4;}
.home-page .offer-status.is-success{
  padding:.5rem .6rem;border-radius:10px;border:1px solid rgba(229,185,79,.4);
  background:rgba(229,185,79,.14);color:#ffeeb4;font-weight:800;
}
.home-page .offer-status.is-error{color:#ffd6d6;}
.home-page .offer-honeypot{
  position:absolute !important;left:-9999px !important;width:1px !important;height:1px !important;
  opacity:0 !important;pointer-events:none !important;
}
@media(max-width:900px){
  .home-page .payment-options-split{grid-template-columns:1fr;gap:1rem;}
  .home-page .payment-pane-offer{padding-left:0;padding-top:1rem;border-left:0;border-top:1px solid rgba(214,171,84,.28);}
  .home-page .payment-options-split .payment-options-copy,
  .home-page .payment-options-split .payment-options-terms{text-align:center;}
  .home-page .payment-options-split .payment-options-actions{justify-content:center;}
}
@media(max-width:520px){ .home-page .offer-form-fields{grid-template-columns:1fr;} }
/* keep "Leasing" visible on the provider buttons inside the split */
.home-page .payment-options-split .pay-btn-suffix{display:inline;}
@media(max-width:700px){ .home-page .pay-btn-suffix{display:none;} }

/* ===== V21.6 — palette retune: neutral jewel-case dark + ivory chips =====
   The old chocolate (#20150a) is a warm orange-brown that fights the cool
   blues and greens in the Acima / Snap / Progressive marks. Swapping it for
   a neutral graphite lets gold read as gold and lets partner logos sit
   cleanly, without losing the dark luxury ground. */
.home-page .payment-options-strip{
  background:
    radial-gradient(ellipse 72% 130% at 50% -12%, rgba(230,184,88,.17), transparent 62%),
    linear-gradient(162deg,#0b0b0d 0%,#141419 44%,#1b191e 62%,#0d0d10 100%) !important;
  border-top:1px solid rgba(212,168,78,.32);
  border-bottom:1px solid rgba(212,168,78,.32);
}
.home-page .trust-band{
  background:
    radial-gradient(ellipse 55% 200% at 50% 50%, rgba(212,168,78,.10), transparent 72%),
    linear-gradient(120deg,#0a0a0c 0%,#16161a 50%,#0a0a0c 100%) !important;
  border-bottom:1px solid rgba(212,168,78,.24);
}

/* provider chips: warm ivory so partner logos read correctly,
   with a gold hairline so they still belong to the jewelry palette */
.home-page .payment-option-button{
  background:linear-gradient(180deg,#fffdf8 0%,#f4ede1 100%) !important;
  border:1px solid rgba(206,163,74,.62) !important;
  color:#1d1a15 !important;
  box-shadow:0 6px 18px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.9) !important;
}
.home-page .payment-option-button:hover,
.home-page .payment-option-button:focus-visible{
  border-color:rgba(226,183,92,.9) !important;
  box-shadow:0 10px 24px rgba(0,0,0,.36), inset 0 1px 0 #fff !important;
}

/* the centre frame + divider tuned to the new ground */
.home-page .payment-options-inner::before{border-color:rgba(212,168,78,.26);}
.home-page .payment-pane-offer{border-left-color:rgba(212,168,78,.24);}

/* ===== V21.7 — partner logos inside the ivory chips ===== */
.home-page .payment-option-button{
  padding:.6rem 1.1rem !important;
  min-height:58px;
}
.home-page .pay-btn-logo{
  display:block;
  height:30px;
  width:auto;
  max-width:170px;
  object-fit:contain;
}
/* keep the provider name for screen readers and for anyone with images off */
.home-page .pay-btn-sr{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);
  white-space:nowrap;border:0;
}
@media(max-width:1150px){ .home-page .pay-btn-logo{height:26px;max-width:140px;} }
@media(max-width:700px){
  .home-page .pay-btn-logo{height:22px;max-width:105px;}
  .home-page .payment-option-button{min-height:50px;padding:.5rem .7rem !important;}
}

/* V21.7b — chips sized as cards, not pills, so rectangular logos breathe */
.home-page .payment-options-split .payment-option-button{
  flex:0 0 auto;
  min-width:176px;
  min-height:66px;
  padding:.7rem 1.1rem !important;
  border-radius:14px !important;
}
.home-page .pay-btn-logo{height:34px;max-width:148px;}
@media(max-width:1150px){
  .home-page .payment-options-split .payment-option-button{min-width:150px;min-height:60px;}
  .home-page .pay-btn-logo{height:29px;max-width:126px;}
}
@media(max-width:900px){
  .home-page .payment-options-split .payment-options-actions{gap:.6rem;}
}
@media(max-width:700px){
  .home-page .payment-options-split .payment-option-button{
    flex:1 1 0;min-width:0;min-height:54px;padding:.5rem .55rem !important;border-radius:12px !important;
  }
  .home-page .pay-btn-logo{height:24px;max-width:100%;}
}

/* V21.8 — trimmed repairs + engraving cards */
.home-page .repair-feature-card,
.home-page .engraving-feature-card{padding:1.4rem 1.5rem;}
.home-page .repair-feature-card h2,
.home-page .engraving-feature-card h2{font-size:clamp(1.35rem,2.2vw,1.9rem);margin-bottom:.5rem;}
.home-page .service-lead{font-size:.95rem;line-height:1.5;margin-bottom:.85rem;}
.home-page .service-note{font-size:.8rem;margin:.7rem 0 .9rem;opacity:.85;}
.home-page .service-highlight-strip{gap:.4rem;}
.home-page .service-cta-row{margin-top:.2rem;}
.home-page .engraving-ad-image{max-height:230px;width:auto;object-fit:contain;margin-inline:auto;}
@media(max-width:900px){
  .home-page .repair-feature-card,
  .home-page .engraving-feature-card{padding:1.15rem 1.2rem;}
  .home-page .engraving-ad-image{max-height:180px;}
}

/* ==========================================================================
   V22 — MODERN MINIMAL
   Flat surfaces, one gold, hairline rules, restrained shadows.
   Purely additive: delete everything below this line to revert.
   ========================================================================== */
.home-page{
  --ink:#16151a;
  --ink-2:#57534c;
  --ink-3:#8a847a;
  --paper:#faf9f7;
  --card:#ffffff;
  --line:rgba(22,21,26,.10);
  --line-2:rgba(22,21,26,.06);
  --gold:#b98a37;
  --gold-deep:#9a7129;
  --gold-soft:#f0e4cd;
  --dark:#15141a;
  --dark-2:#1e1d25;
  --line-dark:rgba(255,255,255,.13);
}

/* ---- flat page ground ---- */
body.home-page{background:var(--paper) !important;}
.home-page .site-header{background:#fff !important;backdrop-filter:none !important;border-bottom:1px solid var(--line-2);}
.home-page .site-header::after{display:none !important;}
.home-page .metals-ticker{
  background:#fff !important;
  border-bottom:1px solid var(--line-2);
  box-shadow:none !important;
}
.home-page .metals-ticker::after{display:none !important;}
.home-page .metals-label,.home-page .metals-updated{color:var(--ink-3) !important;}
.home-page .metal-chip{
  background:var(--paper) !important;
  border:1px solid var(--line) !important;
  color:var(--ink) !important;
}
.home-page .metal-chip strong{color:var(--gold-deep) !important;}

/* ---- flat dark bands ---- */
.home-page .trust-band{background:var(--dark) !important;border-bottom:0;}
.home-page .trust-band-inner span{color:#e9e5dd !important;}
.home-page .trust-band-inner span + span::before{background:var(--gold) !important;}
.home-page .payment-options-strip{
  background:var(--dark) !important;
  border-top:0;border-bottom:0;
  box-shadow:none !important;
}
.home-page .payment-options-strip::before,
.home-page .payment-options-strip::after{display:none !important;}
.home-page .payment-options-inner::before{display:none !important;}
.home-page .payment-pane-offer{border-left-color:var(--line-dark) !important;}

/* ---- flat light sections ---- */
.home-page .curated-catalog-section,
.home-page .reviews-section,
.home-page .visit-section,
.home-page .store-policies-section{background:var(--paper) !important;}
.home-page .gold-calculator-section,
.home-page .piece-builder-section,
.home-page .quick-services-section{background:#fff !important;}
.home-page .site-footer{background:var(--paper) !important;border-top:1px solid var(--line-2);}

/* ---- cards: white, hairline, no glow ---- */
.home-page .catalog-product-card,
.home-page .quick-service-card,
.home-page .info-card,
.home-page .review-card,
.home-page .store-policies-card,
.home-page .gold-calculator-card,
.home-page .custom-builder,
.home-page .map-card{
  background:var(--card) !important;
  border:1px solid var(--line) !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
}
.home-page .catalog-product-card:hover,
.home-page .quick-service-card:hover,
.home-page .info-card:hover,
.home-page .review-card:hover{
  border-color:rgba(185,138,55,.42) !important;
  box-shadow:0 2px 10px rgba(22,21,26,.06) !important;
  transform:none !important;
}
.home-page .catalog-product-card::before,
.home-page .quick-service-card::before,
.home-page .info-card::before,
.home-page .review-card::before,
.home-page .map-card::before{display:none !important;}

/* repairs + engraving cards join the light system */
.home-page .repair-feature-card,
.home-page .engraving-feature-card{background:#fff !important;color:var(--ink) !important;}
.home-page .repair-feature-card h2,
.home-page .engraving-feature-card h2{color:var(--ink) !important;}
.home-page .repair-feature-card .service-lead,
.home-page .engraving-feature-card .service-lead,
.home-page .service-note{color:var(--ink-2) !important;}
.home-page .service-badge{
  background:var(--gold-soft) !important;
  color:var(--gold-deep) !important;
  border:1px solid rgba(185,138,55,.28) !important;
}
.home-page .service-highlight-strip span{
  background:var(--paper) !important;
  border:1px solid var(--line) !important;
  color:var(--ink-2) !important;
}

/* ---- one gold, flat buttons ---- */
.home-page .button-primary,
.home-page .nav-call,
.home-page .gold-calc-button{
  background:var(--gold) !important;
  color:#fff !important;
  border:1px solid var(--gold) !important;
  box-shadow:none !important;
  text-shadow:none !important;
}
.home-page .button-primary:hover,
.home-page .nav-call:hover,
.home-page .gold-calc-button:hover{
  background:var(--gold-deep) !important;border-color:var(--gold-deep) !important;transform:none !important;
}
.home-page .button-secondary{
  background:#fff !important;
  color:var(--ink) !important;
  border:1px solid var(--line) !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
}
.home-page .button-secondary:hover{border-color:var(--gold) !important;color:var(--gold-deep) !important;transform:none !important;}
.home-page .offer-submit{background:var(--gold) !important;color:#fff !important;}
.home-page .offer-submit:hover{background:var(--gold-deep) !important;}
.home-page .catalog-filter{
  background:#fff !important;border:1px solid var(--line) !important;color:var(--ink-2) !important;box-shadow:none !important;
}
.home-page .catalog-filter.is-active{
  background:var(--ink) !important;border-color:var(--ink) !important;color:#fff !important;
}
.home-page .eyebrow{color:var(--gold-deep) !important;}

/* ---- the glowing orange headline was the most dated element ---- */
.home-page .fire-stock-heading{
  background:none !important;
  -webkit-background-clip:border-box !important;
  background-clip:border-box !important;
  -webkit-text-fill-color:var(--ink) !important;
  color:var(--ink) !important;
  text-shadow:none !important;
  filter:none !important;
  letter-spacing:-.01em;
}

/* ---- calm the remaining chrome ---- */
.home-page .payment-option-button{box-shadow:none !important;}
.home-page .header-phone-number{color:var(--gold-deep) !important;}
.home-page .header-phone-note{color:var(--ink-3) !important;}
.home-page .site-nav a{color:var(--ink) !important;}

/* V22b — text colours that were written for dark panels, now on light ones */
.home-page .piece-builder-section h2,
.home-page .piece-builder-section .section-header p,
.home-page .piece-builder-section > .container > .section-header *{
  color:var(--ink) !important;
  -webkit-text-fill-color:var(--ink) !important;
  text-shadow:none !important;
}
.home-page .piece-builder-section .eyebrow{color:var(--gold-deep) !important;}
.home-page .custom-builder{
  background:#fff !important;
  border:1px solid var(--line) !important;
  color:var(--ink) !important;
}
.home-page .custom-builder h3,
.home-page .custom-builder label span,
.home-page .custom-builder-summary strong{color:var(--ink) !important;}
.home-page .custom-choice{
  background:var(--paper) !important;
  border:1px solid var(--line) !important;
  color:var(--ink) !important;
}
.home-page .custom-choice.is-selected{
  background:var(--ink) !important;border-color:var(--ink) !important;color:#fff !important;
}
.home-page .custom-builder input,
.home-page .custom-builder select,
.home-page .custom-builder textarea{
  background:#fff !important;border:1px solid var(--line) !important;color:var(--ink) !important;
}
.home-page .custom-builder-consent,
.home-page .custom-builder-consent span,
.home-page .custom-copy-status{color:var(--ink-2) !important;}
.home-page .custom-builder-consent a{color:var(--gold-deep) !important;}

/* repairs / engraving text that came from the old dark cards */
.home-page .repair-feature-card strong,
.home-page .engraving-feature-card strong{color:var(--ink) !important;}
.home-page .repair-feature-card .service-note,
.home-page .engraving-feature-card .service-note{color:var(--ink-3) !important;}
.home-page .engraving-script-line{color:var(--gold-deep) !important;}

/* any leftover gold-on-white links */
.home-page a[href$="terms.html"],
.home-page a[href$="privacy.html"],
.home-page a[href$="returns.html"]{color:var(--gold-deep) !important;}
.home-page .payment-pane-offer a[href$="terms.html"],
.home-page .payment-pane-offer a[href$="privacy.html"]{color:#ffd98a !important;}
.home-page .sitewide-privacy-inner a{color:var(--gold-deep) !important;}

/* V22c — remaining dark-panel text inside the custom builder + gold consent links */
.home-page .custom-builder-step h3,
.home-page .custom-builder-fields label > span,
.home-page .custom-builder-fields span,
.home-page .custom-notes-label span{
  color:var(--ink) !important;
  -webkit-text-fill-color:var(--ink) !important;
}
.home-page .gold-calculator-card label > span,
.home-page .gold-calculator-card .gold-calculator-note{color:var(--ink-2) !important;}
.home-page .gold-policy-links a,
.home-page .privacy-consent a,
.home-page .gold-consent a{color:var(--gold-deep) !important;-webkit-text-fill-color:var(--gold-deep) !important;}

/* V22d — the custom-builder inner panels were still dark brown */
.home-page .piece-builder-section{color:var(--ink) !important;}
.home-page .custom-builder-step,
.home-page .custom-builder-fields,
.home-page .custom-builder-summary{
  background:var(--paper) !important;
  border:1px solid var(--line) !important;
  color:var(--ink) !important;
  box-shadow:none !important;
}
.home-page .custom-builder-step *,
.home-page .custom-builder-summary *{ -webkit-text-fill-color:currentColor; }
.home-page .custom-builder-summary .eyebrow{color:var(--gold-deep) !important;}
.home-page .custom-builder-consent{
  background:#fff !important;border:1px solid var(--line) !important;
}

/* V22e — links inside the dark popup stay light gold */
.home-page .lead-popup a,
.home-page .lead-contact-consent a,
.home-page .lead-popup-fineprint a{
  color:#ffd98a !important;-webkit-text-fill-color:#ffd98a !important;
}

/* V22f — remove the fire emoji; make the logo tile look intentional */
.home-page .fire-stock-heading::after{content:"" !important;display:none !important;}
.home-page .fire-stock-heading{filter:none !important;}

/* The logo artwork is pale gold built for a dark ground, so it keeps its
   black tile — rounded with a hairline so it reads as a brand mark, not a
   stray black square on the white header. */
.home-page .brand-logo,
.home-page .site-brand img,
.home-page header img[alt*="Hands of Gold"]{
  border-radius:14px !important;
  border:1px solid rgba(22,21,26,.10) !important;
  background:#0f0e12 !important;
  object-fit:cover !important;
  padding:0 !important;
}
.home-page .footer-logo{
  border-radius:12px !important;
  border:1px solid rgba(22,21,26,.10) !important;
  background:#0f0e12 !important;
}

/* ==========================================================================
   V22g — popup: half the height, and on the new neutral palette
   (it was still wearing the old purple/plum gradient)
   ========================================================================== */
.home-page .lead-popup-card{
  width:min(100%,430px) !important;
  max-height:88vh;
  overflow-y:auto;
  padding:1.25rem 1.3rem 1.35rem !important;
  border-radius:16px !important;
  background:var(--dark) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  box-shadow:0 24px 60px rgba(0,0,0,.5) !important;
}
.home-page .lead-popup-card::before{display:none !important;}
.home-page .lead-popup-overlay{background:rgba(10,10,12,.72) !important;backdrop-filter:blur(3px) !important;}

/* type scaled down */
.home-page .lead-popup-eyebrow{font-size:.62rem !important;letter-spacing:.18em;margin-bottom:.15rem !important;}
.home-page .lead-popup-card h2,
.home-page #lead-popup-title{
  font-size:1.32rem !important;
  line-height:1.15 !important;
  margin:0 0 .35rem !important;
  text-shadow:none !important;
}
.home-page .lead-popup-copy{font-size:.85rem !important;line-height:1.4;margin-bottom:.6rem !important;}

/* perks become one compact line of chips */
.home-page .lead-popup-perks{
  display:flex !important;
  flex-wrap:wrap;
  gap:.3rem !important;
  margin:0 0 .7rem !important;
}
.home-page .lead-popup-perks li{
  padding:.28rem .55rem !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.07) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  font-size:.7rem !important;
  color:#efe7d8 !important;
}
.home-page .lead-popup-perks li::before{display:none !important;}

/* form: labels inline-tight, inputs shorter */
.home-page .lead-popup-form{gap:.35rem !important;}
.home-page .lead-popup-form label:not(.lead-contact-consent):not(.lead-honeypot){
  font-size:.72rem !important;
  font-weight:700 !important;
  margin-bottom:-.1rem;
}
.home-page .lead-popup-form input:not([type=checkbox]):not(.lead-honeypot){
  min-height:38px !important;
  padding:.4rem .6rem !important;
  font-size:.92rem !important;
  border-radius:9px !important;
  border:1px solid rgba(255,255,255,.22) !important;
  background:#fffdf9 !important;
}
.home-page .lead-contact-consent{
  padding:.42rem .55rem !important;
  font-size:.68rem !important;
  line-height:1.35 !important;
  border-radius:9px !important;
  margin:.25rem 0 .1rem !important;
}
.home-page .lead-submit,
.home-page #lead-submit{
  min-height:44px !important;
  font-size:.98rem !important;
  background:var(--gold) !important;
  color:#fff !important;
  border:0 !important;
  box-shadow:none !important;
}
.home-page .lead-submit:hover{background:var(--gold-deep) !important;}
.home-page .lead-popup-status{font-size:.78rem !important;min-height:1rem !important;}
.home-page .lead-popup-close{
  width:32px !important;height:32px !important;
  top:.55rem !important;right:.55rem !important;
  background:rgba(255,255,255,.12) !important;
  border-color:rgba(255,255,255,.25) !important;
  font-size:1.1rem !important;
}
@media(max-width:520px){
  .home-page .lead-popup-card{padding:1.05rem 1.05rem 1.15rem !important;max-height:86vh;}
  .home-page .lead-popup-card h2,.home-page #lead-popup-title{font-size:1.18rem !important;}
}

/* ==========================================================================
   HANDS OF GOLD — BRAND PATCH 2026-09-04
   Luxury diamond-cut lead popup. Blue + Gold + Black + Ivory.

   Scoped to #lead-popup on purpose: ID specificity beats BOTH the earlier
   ".home-page .lead-popup-*" layers in this file AND the runtime
   "body.hog-ld" layer that pwa.js injects into <head> at load. No JS,
   no markup, no IDs, no form fields and no analytics hooks were changed.

   TO REVERT: delete everything from this banner to the end of the file.
   Original files: _backup/brand-patch-2026-09-04/
   ========================================================================== */

#lead-popup{
  /* Was z-index:80 — the Labor Day sale bar (85) and the mobile dock (9999)
     were covering the popup headline, close button and CTA on phones.
     10000 clears both and still sits under the product modal (10020). */
  z-index:10000!important;
  --hog-navy:#0A2E73;
  --hog-navy-deep:#061A3A;
  --hog-black:#080B12;
  --hog-gold:#C79638;
  --hog-gold-soft:#D6AD5C;
  --hog-gold-deep:#B47B21;
  --hog-ivory:#F6F3EC;
  --hog-hairline:rgba(255,255,255,.14);
}

/* ---- backdrop: dark but the store still shows through ------------------ */
#lead-popup .lead-popup-overlay{
  background:rgba(3,6,12,.72)!important;
  -webkit-backdrop-filter:blur(7px)!important;
  backdrop-filter:blur(7px)!important;
}

/* ---- the gem: outer element is the 1px gold frame ---------------------- */
#lead-popup .lead-popup-card{
  width:min(100% - 28px,580px)!important;
  max-width:none!important;
  max-height:min(90vh,760px)!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  padding:2.45rem 2.1rem 1.9rem!important;
  border:0!important;
  border-radius:0!important;
  background:rgba(199,150,56,.85)!important;
  box-shadow:0 28px 80px rgba(0,0,0,.55),0 0 40px rgba(10,46,115,.12)!important;
  -webkit-clip-path:polygon(7% 0,93% 0,100% 10%,100% 90%,93% 100%,7% 100%,0 90%,0 10%);
  clip-path:polygon(7% 0,93% 0,100% 10%,100% 90%,93% 100%,7% 100%,0 90%,0 10%);
}

/* ---- inner face: deep navy gradient + two whisper-thin facet lines ------ */
#lead-popup .lead-popup-card::before{
  content:""!important;
  display:block!important;
  position:absolute!important;
  inset:1px!important;
  z-index:0!important;
  border:0!important;
  border-radius:0!important;
  pointer-events:none!important;
  background:
    linear-gradient(135deg,transparent 44.4%,rgba(255,255,255,.035) 45%,rgba(255,255,255,.035) 46%,transparent 46.6%),
    linear-gradient(212deg,transparent 63.4%,rgba(255,255,255,.028) 64%,rgba(255,255,255,.028) 64.7%,transparent 65.3%),
    linear-gradient(145deg,var(--hog-navy-deep) 0%,var(--hog-black) 48%,var(--hog-navy) 100%)!important;
  -webkit-clip-path:polygon(7% 0,93% 0,100% 10%,100% 90%,93% 100%,7% 100%,0 90%,0 10%);
  clip-path:polygon(7% 0,93% 0,100% 10%,100% 90%,93% 100%,7% 100%,0 90%,0 10%);
}

/* content rides above the inner face */
#lead-popup .lead-popup-card > *{position:relative;z-index:1;}

/* ---- close button: sits clear of the cut corner ------------------------ */
#lead-popup .lead-popup-close{
  position:absolute!important;
  top:1rem!important;
  right:2rem!important;
  width:38px!important;
  height:38px!important;
  border-radius:50%!important;
  background:rgba(8,11,18,.85)!important;
  border:1px solid rgba(199,150,56,.65)!important;
  color:var(--hog-ivory)!important;
  font-size:1.35rem!important;
  line-height:1!important;
  z-index:3!important;
}
#lead-popup .lead-popup-close:hover{
  background:rgba(8,11,18,.95)!important;
  border-color:var(--hog-gold)!important;
}
#lead-popup .lead-popup-close:focus-visible{
  outline:2px solid var(--hog-gold)!important;
  outline-offset:2px!important;
}

/* ---- eyebrow + small cut-gem accent above it --------------------------- */
#lead-popup .lead-popup-eyebrow{
  position:relative!important;
  margin:0 0 .85rem!important;
  padding-top:2rem!important;
  color:var(--hog-gold)!important;
  -webkit-text-fill-color:var(--hog-gold)!important;
  font-size:.64rem!important;
  font-weight:800!important;
  letter-spacing:.22em!important;
  text-transform:uppercase!important;
}
#lead-popup .lead-popup-eyebrow::before{
  content:"";
  position:absolute;
  top:1px;
  left:1px;
  width:14px;
  height:14px;
  transform:rotate(45deg);
  border:1px solid var(--hog-gold);
  background:linear-gradient(135deg,rgba(10,46,115,.9) 0%,rgba(199,150,56,.20) 100%);
}

/* ---- headline ---------------------------------------------------------- */
#lead-popup .lead-popup-card h2,
#lead-popup #lead-popup-title{
  margin:0 0 .6rem!important;
  color:var(--hog-ivory)!important;
  -webkit-text-fill-color:var(--hog-ivory)!important;
  font-size:clamp(27px,3vw,38px)!important;
  font-weight:700!important;
  line-height:1.05!important;
  letter-spacing:-.015em!important;
  text-shadow:none!important;
}

/* ---- supporting copy --------------------------------------------------- */
#lead-popup .lead-popup-copy{
  margin:0 0 .95rem!important;
  color:rgba(246,243,236,.82)!important;
  -webkit-text-fill-color:rgba(246,243,236,.82)!important;
  font-size:.92rem!important;
  line-height:1.5!important;
}

/* ---- perk chips: navy fill, gold hairline ------------------------------ */
#lead-popup .lead-popup-perks{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:.34rem!important;
  margin:0 0 1rem!important;
  padding:0!important;
  list-style:none!important;
}
#lead-popup .lead-popup-perks li{
  padding:.3rem .6rem!important;
  border-radius:2px!important;
  background:rgba(10,46,115,.42)!important;
  border:1px solid rgba(199,150,56,.30)!important;
  color:rgba(246,243,236,.86)!important;
  -webkit-text-fill-color:rgba(246,243,236,.86)!important;
  font-size:.7rem!important;
  font-weight:600!important;
  letter-spacing:.01em!important;
}
#lead-popup .lead-popup-perks li::before{display:none!important;}

/* ---- form -------------------------------------------------------------- */
#lead-popup .lead-popup-form{gap:.42rem!important;}
#lead-popup .lead-popup-form label:not(.lead-contact-consent):not(.lead-consent):not(.lead-honeypot){
  color:rgba(246,243,236,.82)!important;
  -webkit-text-fill-color:rgba(246,243,236,.82)!important;
  font-size:.72rem!important;
  font-weight:700!important;
  letter-spacing:.04em!important;
  text-transform:uppercase!important;
}
#lead-popup .lead-popup-form input:not([type=checkbox]):not(.lead-honeypot){
  min-height:44px!important;
  padding:.55rem .7rem!important;
  border-radius:8px!important;
  background:var(--hog-ivory)!important;
  color:var(--hog-black)!important;
  -webkit-text-fill-color:var(--hog-black)!important;
  border:1px solid rgba(199,150,56,.35)!important;
  box-shadow:none!important;
  font-size:16px!important; /* 16px stops iOS Safari zooming the page on focus */
}
#lead-popup .lead-popup-form input::placeholder{
  color:rgba(8,11,18,.48)!important;
  -webkit-text-fill-color:rgba(8,11,18,.48)!important;
  opacity:1!important;
}
#lead-popup .lead-popup-form input:not([type=checkbox]):not(.lead-honeypot):focus,
#lead-popup .lead-popup-form input:not([type=checkbox]):not(.lead-honeypot):focus-visible{
  border-color:var(--hog-gold)!important;
  box-shadow:0 0 0 3px rgba(199,150,56,.12)!important;
  outline:none!important;
}

/* consent block */
#lead-popup .lead-contact-consent,
#lead-popup .lead-consent{
  padding:.5rem .6rem!important;
  border-radius:8px!important;
  background:rgba(10,46,115,.32)!important;
  border:1px solid var(--hog-hairline)!important;
  color:rgba(246,243,236,.8)!important;
  -webkit-text-fill-color:rgba(246,243,236,.8)!important;
  font-size:.68rem!important;
  line-height:1.4!important;
}
#lead-popup .lead-contact-consent span,
#lead-popup .lead-consent span{
  color:rgba(246,243,236,.8)!important;
  -webkit-text-fill-color:rgba(246,243,236,.8)!important;
}
#lead-popup .lead-contact-consent input[type=checkbox]{
  accent-color:var(--hog-gold);
  min-width:18px;
  min-height:18px;
}
#lead-popup a,
#lead-popup .lead-popup-fineprint a{
  color:var(--hog-gold-soft)!important;
  -webkit-text-fill-color:var(--hog-gold-soft)!important;
  text-decoration:underline!important;
}
#lead-popup .lead-popup-fineprint{
  color:rgba(246,243,236,.62)!important;
  -webkit-text-fill-color:rgba(246,243,236,.62)!important;
  font-size:.7rem!important;
}

/* ---- CTA: gold, confident, no urgency theatrics ------------------------ */
#lead-popup .lead-submit,
#lead-popup #lead-submit{
  margin-top:.45rem!important;
  min-height:50px!important;
  border-radius:8px!important;
  background:linear-gradient(135deg,var(--hog-gold-soft) 0%,var(--hog-gold) 55%,var(--hog-gold-deep) 100%)!important;
  color:var(--hog-black)!important;
  -webkit-text-fill-color:var(--hog-black)!important;
  font-weight:800!important;
  font-size:1rem!important;
  letter-spacing:.01em!important;
  border:1px solid rgba(255,255,255,.20)!important;
  box-shadow:none!important;
  transition:transform 160ms ease,box-shadow 160ms ease!important;
}
#lead-popup .lead-submit:hover:not(:disabled),
#lead-popup #lead-submit:hover:not(:disabled){
  transform:translateY(-1px)!important;
  box-shadow:0 8px 24px rgba(199,150,56,.25)!important;
}
#lead-popup .lead-submit:focus-visible,
#lead-popup #lead-submit:focus-visible{
  outline:2px solid var(--hog-ivory)!important;
  outline-offset:2px!important;
}
#lead-popup .lead-submit:disabled,
#lead-popup #lead-submit:disabled{opacity:.75!important;transform:none!important;}

/* ---- status: success on brand, errors stay red for usability ----------- */
#lead-popup .lead-popup-status{
  color:rgba(246,243,236,.82)!important;
  -webkit-text-fill-color:rgba(246,243,236,.82)!important;
  font-size:.8rem!important;
}
#lead-popup .lead-popup-status.is-success{
  color:var(--hog-gold-soft)!important;
  -webkit-text-fill-color:var(--hog-gold-soft)!important;
  background:transparent!important;
}
/* .is-error intentionally left alone — validation stays red on purpose. */

/* ---- mobile: shallower cut so fields keep their width ------------------ */
@media(max-width:560px){
  #lead-popup{padding:.6rem!important;}
  #lead-popup .lead-popup-card{
    width:calc(100% - 28px)!important;
    max-height:min(90vh,760px)!important;
    padding:2.15rem 1.3rem 1.5rem!important;
    -webkit-clip-path:polygon(4% 0,96% 0,100% 5%,100% 95%,96% 100%,4% 100%,0 95%,0 5%);
    clip-path:polygon(4% 0,96% 0,100% 5%,100% 95%,96% 100%,4% 100%,0 95%,0 5%);
  }
  #lead-popup .lead-popup-card::before{
    -webkit-clip-path:polygon(4% 0,96% 0,100% 5%,100% 95%,96% 100%,4% 100%,0 95%,0 5%);
    clip-path:polygon(4% 0,96% 0,100% 5%,100% 95%,96% 100%,4% 100%,0 95%,0 5%);
  }
  #lead-popup .lead-popup-close{top:.7rem!important;right:1rem!important;}
  #lead-popup .lead-popup-eyebrow{padding-top:1.6rem!important;margin-bottom:.65rem!important;}
  #lead-popup .lead-popup-card h2,
  #lead-popup #lead-popup-title{font-size:clamp(22px,6vw,27px)!important;}
  #lead-popup .lead-popup-copy{font-size:.86rem!important;margin-bottom:.75rem!important;}
}

/* very short viewports (phone keyboard open) */
@media(max-height:620px){
  #lead-popup .lead-popup-card{
    max-height:94vh!important;
    padding-top:1.8rem!important;
    padding-bottom:1.2rem!important;
  }
  #lead-popup .lead-popup-eyebrow{padding-top:1.4rem!important;}
}

@media(prefers-reduced-motion:reduce){
  #lead-popup .lead-submit,
  #lead-popup #lead-submit{transition:none!important;}
  #lead-popup .lead-submit:hover:not(:disabled),
  #lead-popup #lead-submit:hover:not(:disabled){transform:none!important;}
}
/* ===== end HANDS OF GOLD BRAND PATCH 2026-09-04 ========================== */
\n\n/* ===== HOG 2026-09-06: Static Google review wall (no carousel controls) ===== */
.home-page #reviews .reviews-controls,
.home-page #reviews .slider-dots{
  display:none!important;
}
.home-page #reviews .reviews-viewport{
  overflow:visible!important;
}
.home-page #reviews .reviews-track{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:14px!important;
  scroll-snap-type:none!important;
  transform:none!important;
  width:100%!important;
}
.home-page #reviews .review-card,
.home-page #reviews .review-card-long{
  flex:none!important;
  width:auto!important;
  min-width:0!important;
  height:100%!important;
  scroll-snap-align:none!important;
  padding:18px!important;
}
.home-page #reviews .review-card h3{
  margin-bottom:10px!important;
}
.home-page #reviews .review-card p{
  font-size:.88rem!important;
  line-height:1.55!important;
}
@media (max-width:1080px) and (min-width:761px){
  .home-page #reviews .reviews-track{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
@media (max-width:760px){
  .home-page #reviews > .container{
    display:block!important;
  }
  .home-page #reviews .review-proof-heading{
    position:static!important;
    text-align:center!important;
    margin-bottom:18px!important;
  }
  .home-page #reviews .review-proof-stars{
    justify-content:center!important;
  }
  .home-page #reviews .reviews-track{
    grid-template-columns:1fr!important;
    gap:12px!important;
  }
  .home-page #reviews .review-card,
  .home-page #reviews .review-card-long{
    padding:16px!important;
  }
  .home-page #reviews .section-cta{
    margin-top:18px!important;
  }
}
