/* ==========================================================================
   STITCH & BLOOM — Stylesheet
   Palette: deep navy / antique gold / soft sky blue / warm cream
   Display: Fraunces · Accent script: Caveat · Body: Inter
   Signature: a hand-stitched "running thread" divider & tag
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Caveat:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #1D2A46;
  --navy-2: #2C3B60;
  --navy-soft: #435377;
  --gold: #C69645;
  --gold-light: #E6C888;
  --gold-dark: #9C7530;
  --sky: #BFD9EA;
  --sky-light: #EAF3F8;
  --cream: #FBF7EF;
  --cream-2: #F3EDE0;
  --ink: #2A2A28;
  --ink-soft: #5B5B57;
  --rose: #E6BDB6;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-card: 0 10px 30px -14px rgba(29, 42, 70, 0.28);
  --shadow-soft: 0 6px 18px -10px rgba(29, 42, 70, 0.2);

  --font-display: 'Fraunces', serif;
  --font-script: 'Caveat', cursive;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
}

p { line-height: 1.65; color: var(--ink-soft); margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: -.35rem;
  line-height: 1;
}

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--sky { background: var(--sky-light); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h2, .section--navy h3 { color: var(--cream); }
.section--navy p { color: #C8D2E4; }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.section--navy .btn-outline { color: var(--cream); }
.section--navy .btn-outline:hover { background: var(--cream); color: var(--navy); }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Signature: stitched thread divider ---------- */
.stitch-divider {
  width: 100%;
  height: 22px;
  display: block;
}
.stitch-divider svg { width: 100%; height: 100%; }
.stitch-divider path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1 11;
}

/* ---------- Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(29, 42, 70, .08);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: 46px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--navy); }
.brand-text .brand-tag { font-family: var(--font-script); font-size: .95rem; color: var(--gold-dark); }

.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy-soft);
  position: relative;
  padding: 6px 2px;
}
.nav-links a.active, .nav-links a:hover { color: var(--navy); }
.nav-links a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--gold);
  border-radius: 2px;
}
.nav-cta { margin-left: 6px; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 8px; right: 8px; height: 2px; background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { top: 19px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--cream); padding: 10px 24px 22px;
    border-bottom: 1px solid rgba(29,42,70,.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; width: 100%; padding: 10px 0; }
  .nav-cta { margin-left: 0; margin-top: 6px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C8D2E4; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--cream); font-family: var(--font-body); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 42px; }
.footer-brand span { font-family: var(--font-display); color: var(--cream); font-size: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .85rem; color: #96A3C1;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); margin-bottom: .4em; }
.hero h1 em { font-style: normal; color: var(--gold-dark); font-family: var(--font-script); font-size: 1.05em; }
.hero p.lede { font-size: 1.1rem; max-width: 480px; }
.hero-cta-row { display: flex; gap: 16px; margin-top: 30px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 26px; margin-top: 42px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--navy-soft); font-weight: 600; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }

.hero-art { position: relative; }
.hero-art .frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--white);
  transform: rotate(-2deg);
}
.hero-art .frame img { width: 100%; height: 460px; object-fit: cover; }
.hero-art .floaty {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 5px solid var(--white);
  transform: rotate(6deg);
}
.hero-art .floaty img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-art .floaty--one { bottom: -30px; left: -36px; }
.hero-art .floaty--two { top: -26px; right: -24px; transform: rotate(-8deg); width: 128px; height: 128px; }
.hero-art .floaty--two img { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { margin-top: 40px; max-width: 420px; }
  .hero-art .floaty { display: none; }
}

/* ---------- Category tiles (home) ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover img { transform: scale(1.06); }
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,42,70,.85) 0%, rgba(29,42,70,.15) 55%, transparent 75%);
}
.tile-label { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: var(--cream); }
.tile-label .eyebrow { color: var(--gold-light); }
.tile-label h3 { color: var(--cream); margin-bottom: 4px; }
.tile-label span.price { font-size: .85rem; color: #D9E1F0; }
@media (max-width: 820px) { .tile-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tile-grid { grid-template-columns: 1fr; } }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step { text-align: center; padding: 0 10px; }
.step .num {
  width: 54px; height: 54px; margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; color: var(--gold-dark);
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Product grid & cards ---------- */
.filters-bar {
  display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; justify-content: space-between;
  margin-bottom: 34px; padding-bottom: 22px; border-bottom: 1px solid rgba(29,42,70,.12);
}
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-body); font-weight: 600; font-size: .85rem;
  padding: 8px 16px; border-radius: 999px; border: 1.5px solid rgba(29,42,70,.18);
  background: var(--white); color: var(--navy-soft); cursor: pointer;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.results-count { font-size: .88rem; color: var(--ink-soft); }
.select-inline {
  font-family: var(--font-body); font-weight: 600; font-size: .85rem; color: var(--navy);
  padding: 8px 14px; border-radius: 999px; border: 1.5px solid rgba(29,42,70,.18); background: var(--white);
}

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 940px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.card-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--sky-light); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media .tag {
  position: absolute; top: 12px; left: 12px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: var(--gold); color: var(--navy); padding: 5px 11px; border-radius: 999px;
}
.card-media .tag.sold {
  background: var(--navy); color: var(--cream);
}
.card-media.is-sold img { filter: grayscale(.55) brightness(.92); }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; }
.card-body h3 { font-size: 1.12rem; margin-bottom: 0; }
.card-body p { font-size: .88rem; margin-bottom: 0; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.card-price { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.15rem; }
.card-footer .btn { padding: 9px 18px; font-size: .82rem; }
.color-picker { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.color-picker__label { font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }
.color-picker__swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.color-swatch { width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(29,42,70,.16); background: var(--swatch-color, #C8A67A); padding: 0; cursor: pointer; transition: transform .15s ease, border-color .15s ease; }
.color-swatch:hover { transform: scale(1.08); }
.color-swatch.active { border-color: var(--navy); box-shadow: 0 0 0 2px rgba(29,42,70,.12); }

.empty-state { text-align: center; padding: 70px 20px; color: var(--ink-soft); }
.empty-state .eyebrow { display: block; margin-bottom: 10px; }

/* ---------- Modal (product quick view) ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(29,42,70,.55);
  display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 300;
}
.modal-box {
  position: relative;
  background: var(--white); border-radius: var(--radius-lg); max-width: 780px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; max-height: 88vh;
  box-shadow: var(--shadow-card);
}
.modal-media { background: var(--sky-light); }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 34px 32px; overflow-y: auto; }
.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.95); font-size: 1.1rem; cursor: pointer; color: var(--navy);
}
@media (max-width: 700px) {
  .modal-box { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-media img { height: 260px; }
}

/* ---------- Cart ---------- */
.cart-modal {
  grid-template-columns: 1fr;
  width: min(760px, 100%);
  max-width: 760px;
  max-height: 92vh;
  margin: 0 auto;
}
.cart-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(29,42,70,.12);
}
.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--sky-light);
  margin-bottom: 18px;
}
.cart-summary__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cart-summary__total {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 4px;
}
.cart-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 88vh;
  overflow-y: auto;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(29,42,70,.1);
  border-radius: var(--radius-md);
  background: var(--cream);
}
.cart-item__meta {
  margin-top: 4px;
  font-size: .85rem;
  color: var(--ink-soft);
}
.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 84px;
}
.cart-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 6px 2px 2px;
}
.cart-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form-error {
  margin: 0;
  color: #9a2c2c;
  font-size: .85rem;
  font-weight: 600;
}
@media (max-width: 700px) {
  .cart-item {
    flex-direction: column;
  }
  .cart-item__actions {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
  }
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 8px; }
.form-row .hint { font-size: .8rem; color: var(--ink-soft); margin-top: 6px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem; color: var(--ink);
  padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid rgba(29,42,70,.18);
  background: var(--cream); transition: border-color .15s ease, background .15s ease;
}
.form-row select,
.select-inline {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%233b3f51' d='M1.5 1.5l4.5 4.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 42px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-note {
  background: var(--sky-light); border-radius: var(--radius-sm); padding: 16px 18px;
  font-size: .88rem; color: var(--navy-soft); margin-bottom: 26px;
}
.form-success {
  text-align: center; padding: 40px 10px;
}
.form-success .icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--sky-light);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  font-size: 1.6rem; color: var(--gold-dark);
}

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid rgba(29,42,70,.12); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); font-weight: 600;
}
.faq-q .icon { font-size: 1.4rem; color: var(--gold-dark); flex: none; transition: transform .2s ease; font-family: var(--font-body); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding-bottom: 22px; padding-right: 40px; }

/* ---------- About page ---------- */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-hero .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 6px solid var(--white); }
.about-hero .frame img { width: 100%; height: 480px; object-fit: cover; }
@media (max-width: 860px) { .about-hero { grid-template-columns: 1fr; } .about-hero .frame img { height: 320px; } }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 26px; box-shadow: var(--shadow-soft); }
.value-card .glyph { font-size: 1.6rem; margin-bottom: 14px; display: block; }
@media (max-width: 780px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.page-hero {
  padding: 56px 0 20px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { max-width: 560px; margin: 0 auto; }

.breadcrumb-space { height: 1px; }

/* ---------- Bootstrap overrides (forms + accordion) ---------- */
.form-control, .form-select {
  font-family: var(--font-body);
  padding: 12px 15px;
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid rgba(29,42,70,.18);
  background: var(--cream);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(198, 150, 69, .18);
  background: var(--white);
}
.form-label, label { color: var(--navy); }

.accordion-item {
  border: none;
  border-bottom: 1px solid rgba(29,42,70,.12);
  background: transparent;
}
.accordion-item:first-of-type, .accordion-item:last-of-type { border-radius: 0; }
.accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  padding: 22px 4px;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--gold-dark); background: transparent; }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-button::after { flex-shrink: 0; }
.accordion-body { padding: 0 4px 26px; color: var(--ink-soft); }
.accordion-body p { font-size: .95rem; }
.accordion-body a { color: var(--gold-dark); font-weight: 600; }
