/* ── Variables ── */
:root {
  --white: #ffffff;
  --off-white: #f9f8f6;
  --cream: #f2ede5;
  --text: #1a1a1a;
  --text-mid: #454545;
  --text-muted: #7a7a7a;
  --gold: #b8913a;
  --gold-light: #d4aa55;
  --navy: #0f1e30;
  --navy-mid: #1b3050;
  --line: #e4e0d8;
  --radius: 12px;
  --shadow-sm: 0 2px 12px rgba(15,30,48,.06);
  --shadow-md: 0 8px 32px rgba(15,30,48,.1);
  --shadow-lg: 0 20px 60px rgba(15,30,48,.12);
  --container: min(1200px, calc(100% - 3rem));
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Reveal ── */
.reveal-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ══════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════ */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.6);
  font-size: .78rem; font-weight: 500; letter-spacing: .02em;
}
.topbar-inner {
  width: var(--container); margin: 0 auto;
  height: 38px; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.topbar-links { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.topbar-links a { color: rgba(255,255,255,.7); transition: color .18s; }
.topbar-links a:hover { color: var(--gold-light); }
.tb-dot { color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  border-color: var(--line);
  box-shadow: 0 2px 20px rgba(15,30,48,.06);
}
.header-inner {
  width: var(--container); margin: 0 auto;
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); }
.brand-divider { width: 1px; height: 18px; background: var(--line); flex-shrink: 0; }
.brand-sub { font-size: .78rem; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; }
.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a { font-size: .9rem; font-weight: 500; color: var(--text-mid); transition: color .18s; }
.site-nav a:hover { color: var(--navy); }
.nav-cta {
  padding: .55rem 1.25rem; border-radius: 999px;
  background: var(--navy); color: var(--white) !important;
  font-weight: 600; font-size: .87rem;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }
.menu-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 0; width: 42px; height: 42px;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { display: block; width: 20px; height: 1.5px; background: var(--navy); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 0;
  display: grid; grid-template-columns: 1fr 340px;
  background: var(--navy); overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 3.5rem max(calc((100vw - 1200px) / 2 + 1.5rem), 2rem) 3.5rem max(calc((100vw - 1200px) / 2 + 1.5rem), 2rem);
  gap: 2rem;
}
.label, .section-label {
  font-size: .73rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; display: block;
}
.section-label-light { color: var(--gold-light); }
.hero-text-block h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500; line-height: 1.1; color: var(--white); max-width: 14ch;
}
.hero-text-block h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { margin-top: 1rem; max-width: 52ch; color: rgba(255,255,255,.68); font-size: .97rem; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.75rem; border-radius: 999px;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: .95rem; font-family: var(--font-body);
  border: none; cursor: pointer; transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: .85rem 1.75rem; border-radius: 999px;
  background: transparent; color: rgba(255,255,255,.85);
  font-weight: 600; font-size: .95rem;
  border: 1px solid rgba(255,255,255,.2);
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.35); }

.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item { display: flex; flex-direction: column; gap: .2rem; }
.stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); line-height: 1; }
.stat-label { font-size: .76rem; font-weight: 500; color: rgba(255,255,255,.5); letter-spacing: .04em; }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.12); flex-shrink: 0; }

.hero-right {
  position: relative; display: flex; align-items: flex-end; justify-content: center;
  background: linear-gradient(160deg, #1b3050 0%, #0f1e30 60%, #0a1625 100%);
  border-left: 1px solid rgba(255,255,255,.06); padding: 2rem 2rem 0;
}
.agent-photo-wrap { display: flex; flex-direction: column; align-items: center; width: 100%; }
.agent-photo {
  width: 260px; height: 320px;
  border-radius: 140px 140px 0 0;
  border: 1px solid rgba(184,145,58,.2);
  overflow: hidden;
  background-image: url('bianka.png');
  background-size: cover;
  background-position: center top;
}
.agent-badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-bottom: none; border-radius: 12px 12px 0 0;
  padding: .7rem 1.25rem; text-align: center;
  display: flex; flex-direction: column; gap: .15rem; width: 100%; max-width: 260px;
}
.agent-badge strong { color: var(--white); font-size: .9rem; font-family: var(--font-display); }
.agent-badge span { color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .06em; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section { padding: 7rem 0; background: var(--white); }
.about-inner {
  width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: start;
}
.about-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; line-height: 1.12; margin-bottom: 1.25rem; }
.about-text p { color: var(--text-mid); font-size: 1.02rem; line-height: 1.78; margin-bottom: 1rem; }
.credential-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.credential { display: flex; align-items: center; gap: .5rem; font-size: .84rem; font-weight: 600; color: var(--text-mid); }
.cred-icon { color: var(--gold); font-size: .6rem; }
.about-card { background: var(--navy); border-radius: 20px; padding: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.about-quote .quote-mark { display: block; font-family: var(--font-display); font-size: 4rem; line-height: .7; color: var(--gold); opacity: .4; margin-bottom: .5rem; }
.about-quote p { color: rgba(255,255,255,.8); font-size: 1.05rem; line-height: 1.72; font-style: italic; margin-bottom: 1rem; }
.about-quote strong { color: var(--gold-light); font-size: .88rem; font-weight: 600; }
.about-contact-quick { display: flex; flex-direction: column; gap: .75rem; border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; }
.about-contact-quick a { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.7); font-size: .88rem; font-weight: 500; transition: color .18s; }
.about-contact-quick a:hover { color: var(--gold-light); }
.about-contact-quick svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   SOLD LISTINGS
══════════════════════════════════════════ */
.sold-section { padding: 7rem 0; background: var(--off-white); }
.sold-inner { width: var(--container); margin: 0 auto; }
.sold-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap;
}
.sold-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; line-height: 1.12; }
.sold-sub { color: var(--text-muted); font-size: .95rem; margin-top: .35rem; max-width: 55ch; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.2rem; border-radius: 999px;
  border: 1.5px solid var(--navy); color: var(--navy);
  font-weight: 600; font-size: .86rem; white-space: nowrap;
  transition: background .18s, color .18s;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.listing-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .25s cubic-bezier(.22,.68,0,1.2), box-shadow .25s ease;
}
.listing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.listing-card > a { display: block; color: inherit; }

.listing-photo {
  aspect-ratio: 4/3; position: relative;
  background-size: cover; background-position: center;
  background-color: #c8cfd8;
}
.sold-tag {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--navy); color: var(--white);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  padding: .28rem .7rem; border-radius: 999px;
}
.rented-tag { background: #2a5e3a; }

.listing-details { padding: 1rem 1.15rem 1.2rem; }
.listing-price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: .2rem; }
.price-mo { font-size: .75rem; font-weight: 500; color: var(--text-muted); font-family: var(--font-body); }
.listing-address { font-size: .86rem; color: var(--text-mid); margin-bottom: .45rem; line-height: 1.4; }
.listing-meta { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--text-muted); font-weight: 500; margin-bottom: .45rem; }
.dot { color: var(--line); }
.listing-credit { font-size: .72rem; color: #aaa; font-style: italic; }

.listings-disclaimer { text-align: center; font-size: .8rem; color: var(--text-muted); margin-top: 1.75rem; font-style: italic; }
.listings-disclaimer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.services-section { padding: 7rem 0; background: var(--white); }
.services-inner { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 5rem; align-items: start; }
.services-left h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; line-height: 1.12; margin-bottom: 1.25rem; }
.services-left p { color: var(--text-mid); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.service-row {
  display: grid; grid-template-columns: 48px 1fr; gap: 1.25rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line); align-items: start;
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; }
.service-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--gold); line-height: 1; }
.service-row h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.service-row p { font-size: .94rem; color: var(--text-muted); line-height: 1.72; }

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
.process-section { padding: 7rem 0; background: var(--navy); color: var(--white); }
.process-inner { width: var(--container); margin: 0 auto; }
.process-header { margin-bottom: 4rem; text-align: center; }
.process-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; color: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 1.5rem; position: relative; }
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(184,145,58,.15); border: 2px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--gold);
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.step-line { position: absolute; top: 26px; left: calc(50% + 26px); right: calc(-50% + 26px); height: 1px; background: linear-gradient(90deg, var(--gold), rgba(184,145,58,.2)); }
.step-line.last { display: none; }
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.process-step p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { padding: 7rem 0; background: var(--cream); }
.testimonials-inner { width: var(--container); margin: 0 auto; }
.testimonial-header { margin-bottom: 3rem; }
.testimonial-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; }
.testimonials-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { background: var(--white); border-radius: 16px; padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.t-stars { color: var(--gold); letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial p { font-size: .97rem; font-style: italic; color: var(--text-mid); line-height: 1.76; margin-bottom: 1.25rem; }
.testimonial cite { font-size: .82rem; font-weight: 700; font-style: normal; color: var(--text-muted); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-section { padding: 7rem 0; background: var(--white); }
.faq-inner { width: var(--container); margin: 0 auto; max-width: 820px; }
.faq-head { margin-bottom: 2.5rem; }
.faq-head h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary {
  padding: 1.25rem 0; font-size: 1.02rem; font-weight: 600;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: color .18s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.3rem; font-weight: 300; flex-shrink: 0; margin-left: 1rem; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--navy); }
.faq-item p { padding-bottom: 1.25rem; color: var(--text-muted); font-size: .97rem; line-height: 1.75; max-width: 66ch; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section { padding: 7rem 0; background: var(--navy); color: var(--white); }
.contact-inner { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.contact-left h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; color: var(--white); margin-bottom: .75rem; }
.contact-left > p { color: rgba(255,255,255,.6); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-details a { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,.75); font-size: .93rem; transition: color .18s; }
.contact-details a:hover { color: var(--gold-light); }
.contact-details svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; }
.contact-details div { display: flex; flex-direction: column; gap: .1rem; }
.contact-details strong { color: var(--white); font-size: .92rem; }
.contact-details span { color: rgba(255,255,255,.45); font-size: .79rem; }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: 20px; padding: 2.25rem; box-shadow: var(--shadow-lg); }
.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid #e4e0d8; border-radius: 8px;
  padding: .7rem .9rem; font-size: .97rem;
  font-family: var(--font-body); color: var(--text);
  background: var(--off-white); outline: none;
  transition: border-color .18s, box-shadow .18s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,145,58,.12); background: var(--white);
}
.form-group input.input-error, .form-group textarea.input-error { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.1); }
.form-group textarea { resize: vertical; min-height: 95px; }
.field-error { font-size: .78rem; color: #c0392b; font-weight: 600; min-height: .9rem; display: block; }
.btn-submit { align-self: flex-start; display: inline-flex; align-items: center; gap: .5rem; margin-top: .25rem; }
.btn-submit svg { width: 17px; height: 17px; stroke: var(--white); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-success { display: none; font-size: .95rem; font-weight: 600; padding: .9rem 1rem; border-radius: 8px; margin-top: .25rem; flex-direction: column; gap: .5rem; }
.form-success.visible { display: flex; background: #eef7ee; color: #2a6e2a; border: 1px solid #b8dfb8; }
.form-success.visible.error { background: #fef2f2; color: #9b1c1c; border-color: #fbc8c8; }
.form-reset-btn { background: none; border: none; padding: 0; font-size: .85rem; font-weight: 700; color: #2a6e2a; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; text-align: left; }
.form-success.error .form-reset-btn { color: #9b1c1c; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: #080f18; color: rgba(255,255,255,.55); }
.footer-inner { width: var(--container); margin: 0 auto; padding: 3rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-top strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); display: block; margin-bottom: .4rem; }
.footer-top p { font-size: .86rem; line-height: 1.65; }
.license-tag { display: inline-block; margin-top: .65rem; font-size: .73rem; font-weight: 700; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.footer-nav { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a, .footer-contact a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .18s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: .55rem; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.disclaimer { font-size: .73rem; line-height: 1.7; color: rgba(255,255,255,.28); }
.copyright { font-size: .78rem; color: rgba(255,255,255,.32); }
.eho { color: rgba(255,255,255,.32); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr 280px; }
  .topbar-inner > span { display: none; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 2rem 3rem; }
  .hero-right { min-height: 300px; padding: 2rem 2rem 0; justify-content: flex-start; }
  .about-inner, .services-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .step-line { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 1.25rem 1.5rem; flex-direction: column; align-items: flex-start;
    display: none; gap: .9rem; box-shadow: var(--shadow-md);
  }
  .site-nav.open { display: flex; }
  .brand-divider, .brand-sub { display: none; }
  .listings-grid { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .sold-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
}


.reviews-note {
  margin-top: 1.25rem;
  font-size: .85rem;
  color: var(--text-muted);
  text-align: center;
}
