/* ============================================================
   ALLISON CLICK — Digital Authority Site
   Aesthetic: Refined Southern Luxury / Editorial Real Estate
   Palette: Deep teal, warm ivory, gold accents
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

:root {
  --teal-deep: #1a4a47;
  --teal-mid: #2a6b66;
  --teal-light: #3d8c85;
  --teal-pale: #e8f4f3;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --ivory: #faf8f4;
  --ivory-dark: #f0ece3;
  --warm-white: #fffdf9;
  --brown-warm: #5c4a32;
  --text-dark: #1c1c1a;
  --text-mid: #4a4a45;
  --text-light: #7a7a72;
  --border: rgba(26, 74, 71, 0.12);
  --shadow-sm: 0 2px 12px rgba(26, 74, 71, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 74, 71, 0.12);
  --shadow-lg: 0 24px 64px rgba(26, 74, 71, 0.18);
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin: 1.75rem 0 0.6rem; color: var(--teal-deep); }
em { font-style: italic; }
p + p { margin-top: 1rem; }

/* ---- Utility ---- */
.section-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal-deep);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.section-title em { color: var(--teal-mid); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal-deep);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal-deep); }
.nav-cta {
  background: var(--teal-deep) !important;
  color: var(--ivory) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 100px;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--teal-mid) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--teal-deep); border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--teal-deep);
  color: var(--ivory);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 74, 71, 0.2);
}
.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--teal-deep);
  color: var(--teal-deep);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--teal-deep);
  color: var(--ivory);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(61, 140, 133, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, var(--teal-pale) 0%, rgba(232, 244, 243, 0.3) 100%);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-content {
  max-width: var(--max-width); margin: 0 auto; padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--teal-deep);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.1;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--teal-mid);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-credentials {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.credential {
  display: flex; flex-direction: column;
}
.credential-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--teal-deep);
  line-height: 1;
}
.credential-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.25rem;
}
.credential-divider {
  width: 1px; height: 36px;
  background: var(--border);
}
.hero-book {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.book-wrapper {
  position: relative;
  display: inline-block;
}
.book-cover {
  width: 300px;
  border-radius: 4px;
  box-shadow:
    -8px 8px 0px rgba(26, 74, 71, 0.08),
    0 32px 80px rgba(26, 74, 71, 0.25),
    0 8px 24px rgba(26, 74, 71, 0.15);
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.book-cover:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg) translateY(-4px);
  box-shadow: 0 40px 100px rgba(26, 74, 71, 0.28);
}
.book-glow {
  position: absolute;
  bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 40px;
  background: radial-gradient(ellipse, rgba(26, 74, 71, 0.2) 0%, transparent 70%);
  filter: blur(8px);
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.5;
  animation: fadeInUp 1s ease 1.5s both;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light);
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--teal-light), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to { opacity: 0.5; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   PULLQUOTE
   ============================================================ */
.pullquote-section {
  background: var(--teal-deep);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.pullquote-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(61, 140, 133, 0.3) 0%, transparent 70%);
}
.pullquote-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 1rem;
  display: block;
}
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.pullquote-cite {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: 7rem 0;
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 0.975rem;
  line-height: 1.8;
}
.about-contact-row {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-contact-link {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--teal-mid);
  transition: color 0.2s;
}
.about-contact-link:hover { color: var(--teal-deep); }
.about-contact-link svg { flex-shrink: 0; color: var(--gold); }

.values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.value-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.value-icon {
  font-size: 1.5rem;
  color: var(--teal-mid);
  opacity: 0.6;
  margin-bottom: 1rem;
  display: block;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--teal-deep);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   BOOK FEATURE
   ============================================================ */
.book-section {
  padding: 7rem 0;
  background: var(--ivory-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.book-feature-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: center;
}
.book-feature-cover img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.book-feature-text p {
  color: var(--text-mid);
  font-size: 0.975rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.book-chapters-preview {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.bcp-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.4rem 0;
}
.bcp-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  width: 2rem; flex-shrink: 0;
}
.bcp-title {
  font-size: 0.875rem;
  color: var(--text-mid);
}

/* ============================================================
   CHAPTERS
   ============================================================ */
.chapters-section {
  padding: 7rem 0;
  background: var(--warm-white);
}
.chapters-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.chapters-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.chapters-grid {
  display: flex; flex-direction: column; gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}

/* Chapter Card */
.chapter-card {
  background: var(--warm-white);
  transition: var(--transition);
}
.chapter-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.chapter-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }

.chapter-toggle {
  width: 100%;
  text-align: left;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.chapter-toggle:hover { background: var(--ivory); }
.chapter-toggle[aria-expanded="true"] { background: var(--teal-pale); }

.chapter-card-header {
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 2rem;
  row-gap: 0.3rem;
  align-items: center;
}
.chapter-meta {
  display: flex; align-items: center; justify-content: space-between;
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}
.chapter-num {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.chapter-expand-icon {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.chapter-expand-icon span {
  position: absolute;
  background: var(--teal-light);
  border-radius: 2px;
  transition: var(--transition);
}
.chapter-expand-icon span:first-child {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.chapter-expand-icon span:last-child {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.chapter-toggle[aria-expanded="true"] .chapter-expand-icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.chapter-card-title {
  font-size: 1.35rem;
  color: var(--teal-deep);
  font-weight: 400;
  grid-column: 1;
}
.chapter-card-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  grid-column: 1;
}

/* Chapter expanded content */
.chapter-content {
  overflow: hidden;
  transition: var(--transition);
}
.chapter-content[hidden] { display: none; }
.chapter-body {
  padding: 0 2rem 2.5rem;
  max-width: 740px;
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding-top: 2rem;
}
.chapter-body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.chapter-body h4:first-of-type { margin-top: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: 7rem 0;
  background: var(--ivory);
  border-top: 1px solid var(--border);
}
.faq-header {
  max-width: 480px; margin-bottom: 4rem;
}
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.faq-item {
  padding: 2rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.faq-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item a {
  color: var(--teal-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0f3330 100%);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(61, 140, 133, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  max-width: 700px; margin: 0 auto; padding: 0 2rem;
  text-align: center; position: relative; z-index: 1;
}
.contact-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ivory);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.contact-title em {
  color: var(--gold-light);
}
.contact-subtitle {
  color: rgba(250, 248, 244, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.contact-methods {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
}
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  color: var(--ivory);
}
.contact-method:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}
.contact-method-icon {
  color: var(--gold);
  flex-shrink: 0;
}
.contact-method > div:last-child {
  display: flex; flex-direction: column; text-align: left;
}
.contact-method-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.5);
  margin-bottom: 0.15rem;
}
.contact-method-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ivory);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  padding: 3rem 0;
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 0.2rem;
}
.footer-tagline {
  font-size: 0.78rem;
  color: rgba(250, 248, 244, 0.5);
  letter-spacing: 0.05em;
}
.footer-bro {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}
.footer-nav {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.5);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--ivory); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 248, 244, 0.3);
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.5rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero::before { display: none; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-credentials { justify-content: center; }
  .hero-book { order: -1; }
  .book-cover { width: 220px; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .book-feature-grid { grid-template-columns: 1fr; }
  .book-feature-cover { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-methods { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--ivory);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav-hamburger { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
  .chapter-card-header { padding: 1.25rem; }
  .chapter-body { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   CREDENTIALS & DESIGNATIONS
   ============================================================ */
.about-contact-static {
  cursor: default;
  color: var(--text-light) !important;
  font-size: 0.825rem;
}
.about-contact-static:hover { color: var(--text-mid) !important; }

.credentials-row {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.credentials-heading {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cred-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--teal-pale);
  border: 1px solid rgba(26, 74, 71, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: 0.03em;
}

.footer-brokerage {
  font-size: 0.72rem;
  color: rgba(250, 248, 244, 0.35);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}
