/* ==========================================================================
   Shree Bhagavathi Astrologer — Design System
   Palette derived from the site logo (marigold gold + deep maroon + black)
   ========================================================================== */

:root {
  --gold: #D89B3C;
  --gold-light: #F0C165;
  --gold-dark: #B87F24;
  --maroon: #6E1E1E;
  --maroon-dark: #4A1414;
  --ink: #1E1512;
  --ink-soft: #3A2A22;
  --cream: #FFF8EC;
  --cream-deep: #FBEFDA;
  --white: #FFFFFF;
  --muted: #7A6A5E;
  --border: #EADFC9;
  --shadow: 0 10px 30px rgba(46, 25, 10, 0.12);
  --shadow-sm: 0 4px 14px rgba(46, 25, 10, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--maroon-dark);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 700;
}
p { margin: 0 0 16px; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 88px 0; }
@media (max-width: 780px) {
  section { padding: 56px 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--cream-deep);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { color: var(--muted); font-size: 17px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover { box-shadow: 0 14px 28px rgba(184,127,36,.35); }
.btn-maroon {
  background: var(--maroon);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-maroon:hover { background: var(--maroon-dark); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--gold-light); }
.btn-outline-dark {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}
.btn-outline-dark:hover { background: var(--maroon); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* Top utility bar */
.topbar {
  background: var(--maroon-dark);
  color: #EAD9C4;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
}
.topbar a { color: #EAD9C4; }
.topbar .topbar-contact { display: flex; gap: 20px; align-items: center; }
.topbar .topbar-contact span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .social { display: flex; gap: 12px; }
.topbar .social a {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  font-size: 12px;
}
@media (max-width: 780px) {
  .topbar .topbar-contact span.hide-mobile { display: none; }
}

/* Header / Nav */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 21, 18, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(216,155,60,.25);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: 54px; border-radius: 50%; object-fit: cover; background: #fff; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand .brand-text .name {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
}
.brand .brand-text .tag {
  color: #C9B8A6;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
nav.main-nav { display: flex; align-items: center; gap: 6px; }
nav.main-nav > ul { display: flex; align-items: center; gap: 2px; }
nav.main-nav a.nav-link {
  color: #EDE1D2;
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-block;
  transition: color .15s ease, background .15s ease;
}
nav.main-nav a.nav-link:hover, nav.main-nav a.nav-link.active { color: var(--gold-light); background: rgba(216,155,60,.1); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}
.dropdown a:hover { background: var(--cream-deep); color: var(--maroon); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.icon-btn.wa { background: #25D366; color: #fff; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--gold-light); border-radius: 2px; }

@media (max-width: 960px) {
  nav.main-nav { display: none; }
  .header-cta .btn-label { display: none; }
  .menu-toggle { display: flex; }
  .brand .brand-text .name { font-size: 17px; }
}

.mobile-nav {
  display: none;
  background: var(--maroon-dark);
  border-top: 1px solid rgba(216,155,60,.2);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { padding: 10px 24px 20px; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: #EDE1D2;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav .sub { padding-left: 16px; }
.mobile-nav .sub a { font-size: 13.5px; color: #C9B8A6; }

/* Hero */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 75% 20%, rgba(216,155,60,.35), transparent 55%),
              linear-gradient(160deg, var(--ink) 0%, var(--maroon-dark) 55%, var(--ink) 100%);
  color: var(--cream);
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero .zodiac-wheel {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  opacity: .5;
  animation: spin 90s linear infinite;
}
@keyframes spin { from { transform: translateY(-50%) rotate(0deg);} to { transform: translateY(-50%) rotate(360deg);} }
.hero .hero-inner { position: relative; z-index: 2; max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(240,193,101,.4);
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4CD964; }
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 20px;
}
.hero p.lead { color: #D9C8B8; font-size: 18px; max-width: 560px; }
.hero .rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 18px; border-radius: 999px;
  margin: 22px 0 30px; font-size: 14px;
}
.hero .rating .stars { color: var(--gold-light); letter-spacing: 2px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.stats-bar {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 900px;
}
.stats-bar .stat { text-align: left; }
.stats-bar .stat .num {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 30px;
  font-weight: 700;
}
.stats-bar .stat .label { color: #C9B8A6; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 780px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero .zodiac-wheel { width: 380px; height: 380px; opacity: .3; right: -160px; }
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  justify-content: center;
}
.trust-strip .item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.trust-strip .item .ic { color: var(--gold-dark); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--ink) 0%, var(--maroon-dark) 65%, var(--ink) 100%);
  color: var(--white);
  padding: 64px 0 58px;
  text-align: center;
}
.page-hero .eyebrow { background: rgba(255,255,255,.08); color: var(--gold-light); border-color: rgba(255,255,255,.15); }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.breadcrumb { color: #C9B8A6; font-size: 14px; }
.breadcrumb a { color: var(--gold-light); }

/* Cards / Services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .thumb { position: relative; height: 190px; background: var(--cream-deep); }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card .badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(30,21,18,.75);
  color: var(--gold-light);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.service-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14.5px; flex: 1; }
.service-card .learn { margin-top: 14px; }

/* About / split section */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.emblem-panel {
  background: linear-gradient(160deg, var(--maroon-dark), var(--ink));
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.emblem-panel .om {
  width: 130px; height: 130px; border-radius: 50%;
  margin: 0 auto 20px;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; color: var(--maroon-dark); font-family: var(--font-head);
  box-shadow: 0 0 0 6px rgba(240,193,101,.15);
}
.ritual-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 780px) { .ritual-row { grid-template-columns: repeat(2, 1fr); } }
.ritual-row .ritual { text-align: center; }
.ritual-row .ic-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 12px;
  border: 1px solid var(--border);
}
.ritual-row h4 { font-size: 15.5px; margin-bottom: 4px; }
.ritual-row p { font-size: 13px; color: var(--muted); margin: 0; }

/* Why choose us grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.feature-card .ic { font-size: 30px; margin-bottom: 14px; }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

.section-dark { background: linear-gradient(160deg, var(--ink), var(--maroon-dark)); color: var(--cream); }
.section-dark h2 { color: var(--white); }
.section-dark .section-head p { color: #C9B8A6; }

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 28px 22px; }
.step .step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold-light); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; margin-bottom: 16px;
}
.step .ic { font-size: 26px; margin-bottom: 10px; }
.step h4 { color: var(--white); font-size: 16.5px; margin-bottom: 6px; }
.step p { color: #C9B8A6; font-size: 13.5px; margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--gold-dark), var(--maroon));
  color: var(--white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #FBEAD1; }
.cta-band .cta-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 18px; }

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  margin: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-weight: 600; font-size: 16px; color: var(--maroon-dark);
  font-family: var(--font-body); line-height: 1.5;
}
.faq-q:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: -2px; }
.faq-q .plus { transition: transform .2s ease; color: var(--gold-dark); font-size: 20px; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 22px; color: var(--muted); font-size: 14.5px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 18px;
}
.contact-card .ic {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-deep); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 100%; min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* Body content (service pages long copy) */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { color: var(--ink-soft); font-size: 16.5px; }
.prose ul { margin: 18px 0; }
.prose ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.prose ul li::before {
  content: "✦";
  position: absolute; left: 0; top: 1px;
  color: var(--gold-dark);
}
.sidebar-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.sidebar-cta h3 { font-size: 18px; }
.sidebar-cta .phone { font-size: 22px; font-weight: 700; color: var(--maroon); margin: 10px 0; }
.related-services { margin-top: 18px; }
.related-services a {
  display: block; padding: 12px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  border: 1px solid var(--border); margin-bottom: 8px;
}
.related-services a:hover { background: var(--cream-deep); color: var(--maroon); }

.service-layout { display: grid; grid-template-columns: 1fr 300px; gap: 46px; }
@media (max-width: 900px) { .service-layout { grid-template-columns: 1fr; } }

/* Footer */
footer.site-footer {
  background: var(--ink);
  color: #C9B8A6;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--gold-light); font-size: 15px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; font-family: var(--font-body); }
.footer-grid a, .footer-grid p, .footer-grid li { color: #C9B8A6; font-size: 14px; }
.footer-grid li { margin-bottom: 10px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: #8A7A6E;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 26px rgba(37,211,102,.5);
  z-index: 200;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Language / misc reusable */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; } }

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge-row span {
  background: var(--cream-deep); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-soft);
}

/* Blog */
.blog-thumb {
  height: 170px;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  background: linear-gradient(150deg, var(--maroon-dark), var(--ink) 60%, var(--gold-dark));
  position: relative;
}
.blog-thumb .badge { position: absolute; top: 14px; left: 14px; }
.post-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 10px;
}
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.page-hero .post-meta { justify-content: center; color: #C9B8A6; }
.page-hero .post-meta .dot { background: rgba(255,255,255,.3); }
.blog-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
}
.post-body { max-width: 760px; margin: 0 auto; }
.post-body p { color: var(--ink-soft); font-size: 16.5px; }
.post-body h2 { font-size: 24px; margin-top: 36px; }
.post-body ul { margin: 18px 0; }
.post-body ul li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-soft); }
.post-body ul li::before { content: "✦"; position: absolute; left: 0; top: 1px; color: var(--gold-dark); }
.post-share { display: flex; gap: 10px; margin-top: 30px; flex-wrap: wrap; }

/* Location grid */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .location-grid { grid-template-columns: 1fr; } }
.location-card {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
}
.location-card .ic-circle { background: var(--white); }
.location-card h3 { font-size: 18px; margin-bottom: 6px; }
.location-card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.location-card a.loc-link { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-dark); }
.location-card a.loc-link:hover { color: var(--maroon); }
