/* ============================================================
   GEORGETOWN JEWELERS — Band Builders Page
   Scope: .gjw-bands
   Paste into: Punchmark Site Manager > Design > Theme Settings > Global CSS
   Do not paste into the page editor.
   ============================================================ */

/* ============================================================
   WRAPPER
   ============================================================ */
.gjw-bands {
  font-family: 'Jost', sans-serif !important;
  color: #2e2e2e !important;
  background-color: #ffffff !important;
  line-height: 1.8 !important;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.gjw-bands__eyebrow {
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: #b0b0b0 !important;
  margin-bottom: 14px !important;
  display: block !important;
  font-family: 'Jost', sans-serif !important;
  font-style: normal !important;
}

.gjw-bands__eyebrow--gold {
  color: #C4A45A !important;
}

.gjw-bands__eyebrow--slate {
  color: #5F6B85 !important;
}

.gjw-bands__section-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem) !important;
  color: #2e2e2e !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
}

.gjw-bands__section-title--light {
  color: #2e2e2e !important;
}

.gjw-bands__section-intro {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.8 !important;
  color: #7a7a7a !important;
  max-width: 600px !important;
  margin: 0 auto 1.5rem !important;
  font-weight: 300 !important;
}

.gjw-bands__section-intro--muted {
  color: #7a7a7a !important;
}

.gjw-bands__rule {
  width: 40px !important;
  height: 1px !important;
  background-color: #e8d5a8 !important;
  margin: 0 auto !important;
}

.gjw-bands__rule--gold {
  background-color: #C4A45A !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.gjw-bands__btn {
  display: inline-block !important;
  padding: 13px 32px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  transition: opacity 0.2s ease !important;
  margin: 0.35rem !important;
  cursor: pointer !important;
}

.gjw-bands__btn:hover {
  opacity: 0.75 !important;
}

.gjw-bands__btn--dark {
  background-color: #C4A45A !important;
  color: #ffffff !important;
  border-color: #C4A45A !important;
}

.gjw-bands__btn--outline-dark {
  background-color: transparent !important;
  color: #2e2e2e !important;
  border-color: #eeebe6 !important;
}

.gjw-bands__btn--light {
  background-color: #C4A45A !important;
  color: #ffffff !important;
  border-color: #C4A45A !important;
}

.gjw-bands__btn--outline-light {
  background-color: transparent !important;
  color: #2e2e2e !important;
  border-color: #eeebe6 !important;
}

/* ============================================================
   HERO
   ============================================================ */
.gjw-bands__hero {
  background-color: #ffffff !important;
  padding: 88px 24px 72px !important;
  text-align: center !important;
  border-bottom: 1px solid #eeebe6 !important;
}

.gjw-bands__hero::before {
  display: none !important;
}

.gjw-bands__hero-inner {
  max-width: 620px !important;
  margin: 0 auto !important;
}

.gjw-bands__hero-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  color: #2e2e2e !important;
  line-height: 1.15 !important;
  margin-bottom: 1.25rem !important;
}

.gjw-bands__hero-lead {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
  color: #7a7a7a !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  font-weight: 400 !important;
}

/* ============================================================
   BUILDER SPLIT TILES
   ============================================================ */
.gjw-bands__builders {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

@media (max-width: 767px) {
  .gjw-bands__builders {
    grid-template-columns: 1fr !important;
  }
}

.gjw-bands__builder-tile {
  position: relative !important;
  display: block !important;
  min-height: 480px !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .gjw-bands__builder-tile {
    min-height: 560px !important;
  }
}

.gjw-bands__builder-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s ease !important;
}

.gjw-bands__builder-tile:hover .gjw-bands__builder-img {
  transform: scale(1.03) !important;
}

.gjw-bands__builder-overlay {
  position: relative !important;
  z-index: 2 !important;
  height: 100% !important;
  min-height: 480px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 3rem 2.5rem !important;
}

@media (min-width: 768px) {
  .gjw-bands__builder-overlay {
    min-height: 560px !important;
  }
}

.gjw-bands__builder-overlay--warm {
  background: linear-gradient(to top, rgba(30,25,20,0.82) 0%, rgba(30,25,20,0.20) 55%, transparent 100%) !important;
}

.gjw-bands__builder-overlay--dark {
  background: linear-gradient(to top, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.20) 55%, transparent 100%) !important;
}

.gjw-bands__builder-label {
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #e8d5a8 !important;
  margin-bottom: 8px !important;
  display: block !important;
  font-family: 'Jost', sans-serif !important;
  font-style: normal !important;
}

.gjw-bands__builder-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin-bottom: 0.75rem !important;
}

.gjw-bands__builder-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.875rem !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 1.5rem !important;
  max-width: 360px !important;
  font-weight: 300 !important;
}

.gjw-bands__builder-btn {
  display: inline-block !important;
  padding: 11px 28px !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: opacity 0.2s ease !important;
  border: 1px solid transparent !important;
}

.gjw-bands__builder-btn--light {
  background-color: #ffffff !important;
  color: #2e2e2e !important;
  border-color: #ffffff !important;
}

.gjw-bands__builder-tile:hover .gjw-bands__builder-btn--light {
  opacity: 0.8 !important;
}

.gjw-bands__builder-btn--outline {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.5) !important;
}

.gjw-bands__builder-tile:hover .gjw-bands__builder-btn--outline {
  border-color: #ffffff !important;
}

/* Stretched link */
.gjw-bands__builder-tile {
  position: relative !important;
}
.gjw-bands__stretched-link::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.gjw-bands__section {
  padding: 88px 24px !important;
}

.gjw-bands__section--light {
  background-color: #FAFAF8 !important;
}

.gjw-bands__section--dark {
  background-color: #FAFAF8 !important;
}

.gjw-bands__section-header {
  margin-bottom: 3.5rem !important;
}

/* ============================================================
   WOMEN'S STYLE CARDS
   ============================================================ */
.gjw-bands__style-card {
  padding: 2rem 1.5rem !important;
  border: 1px solid #eeebe6 !important;
  background-color: #ffffff !important;
  height: 100% !important;
  transition: border-color 0.2s ease !important;
}

.gjw-bands__style-card:hover {
  border-color: #C4A45A !important;
}

.gjw-bands__style-name {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: #2e2e2e !important;
  margin-bottom: 0.6rem !important;
  padding-bottom: 0.6rem !important;
  border-bottom: 1px solid #eeebe6 !important;
}

.gjw-bands__style-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.875rem !important;
  line-height: 1.75 !important;
  color: #7a7a7a !important;
  margin-bottom: 0 !important;
  font-weight: 300 !important;
}

/* ============================================================
   MEN'S METAL CARDS
   ============================================================ */
.gjw-bands__metal-card {
  padding: 2rem 1.5rem !important;
  border: 1px solid #eeebe6 !important;
  background-color: #ffffff !important;
  height: 100% !important;
  transition: border-color 0.2s ease !important;
}

.gjw-bands__metal-card:hover {
  border-color: #C4A45A !important;
}

.gjw-bands__metal-swatch {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  margin-bottom: 1rem !important;
  flex-shrink: 0 !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12) !important;
}

.gjw-bands__metal-name {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: #2e2e2e !important;
  margin-bottom: 0.2rem !important;
}

.gjw-bands__metal-karat {
  font-family: 'Jost', sans-serif !important;
  font-size: 10px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #C4A45A !important;
  margin-bottom: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  border-bottom: 1px solid #eeebe6 !important;
}

.gjw-bands__metal-desc {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.875rem !important;
  line-height: 1.75 !important;
  color: #7a7a7a !important;
  margin-bottom: 0 !important;
  font-weight: 300 !important;
}

/* ============================================================
   CTA
   ============================================================ */
.gjw-bands__cta {
  padding: 88px 24px !important;
  background-color: #F7F5F1 !important;
  border-top: 1px solid #eeebe6 !important;
  text-align: center !important;
}

.gjw-bands__cta-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  color: #2e2e2e !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
}

.gjw-bands__cta-body {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.95rem !important;
  color: #7a7a7a !important;
  margin-bottom: 2rem !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 300 !important;
  line-height: 1.8 !important;
}

.gjw-bands__cta-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  justify-content: center !important;
}

@media (max-width: 767px) {
  .gjw-bands__section { padding: 56px 20px !important; }
  .gjw-bands__cta { padding: 56px 20px !important; }
  .gjw-bands__hero { padding: 56px 20px 48px !important; }
}
