/*!
 * Client Name Local Styles
 * Copyright 2008-2017 Punchmark
 */
/*
╔════════════════════════════════════════════════════════════╗
║  Stephen's Fine Jewelry — FAQ Section Styles               ║
║  Add to global CSS file.                                   ║
║                                                            ║
║  To customize colors, override the two accent variables    ║
║  below with your website's brand colors. Everything else   ║
║  scales automatically.                                     ║
║                                                            ║
║  Example for Turquoise template:                           ║
║    --faq-accent:      #1a5f5a;                             ║
║    --faq-accent-dark: #144a46;                             ║
╚════════════════════════════════════════════════════════════╝
*/

/* ── Section ── */
.faq-section {
  padding: 0 0 80px;
}

/* ── Header ── */
.faq-header {
  padding: 80px 0 48px;
  text-align: center;
}

.faq-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--faq-accent);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 12px;
}

.faq-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faq-text);
  line-height: 1.1;
  margin-bottom: 20px;
}

.faq-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--faq-text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-divider {
  width: 48px;
  height: 2px;
  background: var(--faq-accent);
  margin: 24px auto 0;
  opacity: 0.4;
}

/* ── Accordion Items ── */
.faq-section .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--faq-border);
}

.faq-section .accordion-item:first-of-type {
  border-top: 1px solid var(--faq-border);
}

/* ── Accordion Button ── */
.faq-section .accordion-button {
  background: transparent;
  color: var(--faq-text);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 22px 0;
  box-shadow: none !important;
  border: none;
  transition: color 0.25s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--faq-accent);
  background: transparent;
}

.faq-section .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--faq-text-mid);
  width: auto;
  height: auto;
  transform: none !important;
  transition: color 0.2s;
  font-family: 'Cormorant Garamond', serif;
  opacity: 0.6;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: '−';
  color: var(--faq-accent);
  opacity: 1;
}

/* ── Accordion Body ── */
.faq-section .accordion-body {
  padding: 0 0 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--faq-text-mid);
  max-width: 820px;
}

.faq-section .accordion-body p {
  margin-bottom: 0.75rem;
}

.faq-section .accordion-body p:last-child {
  margin-bottom: 0;
}

.faq-section .accordion-body a {
  color: var(--faq-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-section .accordion-body a:hover {
  color: var(--faq-accent-dark);
}

.faq-section .accordion-body ul {
  color: var(--faq-text-mid);
}

/* ── Category Labels ── */
.faq-category-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faq-text-mid);
  background: var(--faq-tag-bg);
  border: 1px solid var(--faq-tag-border);
  padding: 3px 10px;
  border-radius: 2px;
  margin-right: 12px;
  vertical-align: middle;
}

/* ── CTA Block ── */
.faq-cta {
  background: var(--faq-accent-dark);
  padding: 60px 40px;
  text-align: center;
  margin-top: 20px;
}

.faq-cta .eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
}

.faq-cta h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.btn-faq-cta-light {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faq-accent-dark);
  background: #fff;
  border: 2px solid #fff;
  padding: 14px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  margin: 6px;
}

.btn-faq-cta-light:hover {
  background: transparent;
  color: #fff;
}

.btn-faq-cta-outline {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 36px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  margin: 6px;
}

.btn-faq-cta-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 576px) {
  .faq-header       { padding: 48px 0 32px; }
  .faq-section .accordion-button { font-size: 0.85rem; }
  .faq-section .accordion-body   { font-size: 1.05rem; }
  .faq-cta          { padding: 40px 20px; }
}

/* ============================================================
   SFJ — What Makes Us Better
   Colors matched to Turquoise template palette:
   Background:  #f2ede8  (warm cream)
   Dark panels: #1b2d3e  (deep navy)
   Accent:      #4a7c6f  (emerald green)
   Text dark:   #1b2d3e
   Text mid:    #3d4f5c
   Border:      #d6cfc7
   ============================================================ */

.better-section {
  padding: 80px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: transparent;
}

/* ── Page header ── */
.better-header {
  text-align: center;
  margin-bottom: 64px;
}

.better-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #4a7c6f;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 12px;
}

.better-title {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b2d3e;
  line-height: 1.1;
  margin-bottom: 16px;
}

.better-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  color: #3d4f5c;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.better-divider {
  width: 48px;
  height: 2px;
  background: #4a7c6f;
  margin: 24px auto 0;
  opacity: 0.55;
}

/* ── Intro two-column ── */
.better-intro {
  margin-bottom: 80px;
}

.better-intro-image {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  min-height: 400px;
}

.better-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.better-intro-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #4a7c6f;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
}

.better-intro-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 16px;
}

.better-section-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #4a7c6f;
  display: block;
  margin-bottom: 10px;
}

.better-intro-text h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1b2d3e;
  margin-bottom: 20px;
  line-height: 1.2;
}

.better-intro-text p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #3d4f5c;
  margin-bottom: 14px;
}

.better-intro-text p:last-of-type {
  margin-bottom: 28px;
}

.better-intro-btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: #4a7c6f;
  border: 2px solid #4a7c6f;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.better-intro-btn:hover {
  background: transparent;
  color: #4a7c6f;
  text-decoration: none;
}

/* ── Cards header ── */
.better-cards-header {
  text-align: center;
  margin-bottom: 48px;
}

.better-cards-header h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b2d3e;
  margin-bottom: 12px;
}

.better-cards-header p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: #3d4f5c;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Cards ── */
.better-card {
  border: 1px solid #d6cfc7;
  border-radius: 3px;
  padding: 36px 28px;
  height: 100%;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.better-card:hover {
  box-shadow: 0 10px 32px rgba(27,45,62,0.1);
  transform: translateY(-3px);
}

.better-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4a7c6f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.better-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.better-card h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b2d3e;
  margin-bottom: 12px;
}

.better-card p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3d4f5c;
  margin: 0;
}

/* ── Promise banner ── */
.better-promise {
  background: #1b2d3e;
  border-radius: 3px;
  padding: 56px 48px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.better-promise::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  left: 24px;
  font-size: 20rem;
  opacity: 0.05;
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
  color: #fff;
}

.better-promise-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: #7eb8ac;
  display: block;
  margin-bottom: 14px;
}

.better-promise h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.better-promise p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0;
}

.better-promise-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding-left: 24px;
}

.better-stat {
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 20px;
}

.better-stat-number {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.better-stat-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7eb8ac;
}

/* ── Process section ── */
.better-process-header {
  text-align: center;
  margin-bottom: 52px;
}

.better-process-header h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b2d3e;
  margin-bottom: 12px;
}

.better-process-header p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: #3d4f5c;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.better-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #d6cfc7;
}

.better-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.better-step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d6cfc7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #4a7c6f;
}

.better-step h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b2d3e;
  margin-bottom: 8px;
}

.better-step p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3d4f5c;
  margin: 0;
}

.better-process-image {
  border-radius: 3px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.better-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── CTA block ── */
.better-cta {
  background: #1b2d3e;
  padding: 64px 40px;
  text-align: center;
  margin-top: 80px;
  border-radius: 3px;
}

.better-cta .better-eyebrow {
  color: #7eb8ac;
  font-style: italic;
}

.better-cta h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}

.better-cta p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.better-btn-light {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1b2d3e;
  background: #fff;
  border: 2px solid #fff;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  margin: 6px;
}

.better-btn-light:hover {
  background: transparent;
  color: #fff;
  text-decoration: none;
}

.better-btn-outline {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s ease;
  margin: 6px;
}

.better-btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 767px) {
  .better-section        { padding: 48px 0 60px; }
  .better-intro          { margin-bottom: 48px; }
  .better-intro-text     { padding-left: 0; margin-top: 32px; }
  .better-promise        { padding: 40px 24px; margin: 48px 0; }
  .better-promise-stats  { padding-left: 0; flex-direction: row; flex-wrap: wrap; margin-top: 32px; gap: 20px; }
  .better-stat           { flex: 1 1 40%; }
  .better-process-image  { min-height: 260px; margin-top: 40px; }
  .better-cta            { padding: 40px 20px; margin-top: 48px; }
}

/*=============================

V6 DEV vv 

============================*/

[data-widget-element="widgetHeader"] > small,
section[data-pagebuilder="section"] .script {
  font-family: 'filmotype-lacrosse', cursive !important;
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  line-height: 1.35 !important;
}

section[data-pagebuilder="section"].services-section [data-pagebuilder="column"]:nth-child(2) {
  background: var(--bs-section-default-alt) !important;
}

@media (max-width: 767px) {
    header .main-content>.row>.col {
        height: 122px !important;
    }
}

@media (max-width: 767px) {
    nav.navbar #main-navigation .mobile-top-toolbar {
        background: var(--bs-light) !important;
    }
}

section[data-pagebuilder="section"].banner h1,
section[data-pagebuilder="section"].banner .h1 {
  color: #f5f5f5 !important;
}

section[data-pagebuilder="section"].store-services-list-slider-section {
  background: var(--primary) !important;
}