@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium & Prestigious Color Palette (Sober & Legal Luxe) */
  --bg: #faf9f6;             /* Warm alabaster/parchment white (classic legal editorial background) */
  --surface: #ffffff;        /* Pure white for containers/cards */
  --surface-alt: #f3efe8;    /* Slightly warmer champagne stone for distinct sections */
  --ink: #0d1622;            /* Deep obsidian dark (ensures outstanding contrast & legibility) */
  --ink-soft: #2e3a4b;       /* Soft dark slate (perfect contrast ratio for long text: > 7:1) */
  --line: #e3ddd3;           /* Elegant thin luxury stone divider */
  --brand: #091726;          /* Authoritative majestic navy blue */
  --brand-2: #927453;        /* Restrained brushed gold / bronze (symbol of authority & prestige) */
  --brand-3: #dfd2be;        /* Warm champagne gold for subtle borders & accents */
  --ok: #154c33;             /* Rich forest emerald green for successful form submissions */
  --shadow: 0 16px 40px rgba(9, 23, 38, 0.04), 0 4px 12px rgba(9, 23, 38, 0.02); /* Delicate premium shadows */
  --shadow-hover: 0 28px 56px rgba(9, 23, 38, 0.08), 0 8px 24px rgba(9, 23, 38, 0.03); /* Richer interactive shadows */
  --radius: 12px;            /* Architectural, sharp-rounded borders (much more prestigious than circular pills) */
  --radius-sm: 8px;          /* Refined smaller border radius */
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--brand-2);
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .75rem 1.25rem;
  background: #fff;
  border: 1px solid var(--brand-2);
  border-radius: var(--radius-sm);
  z-index: 1000;
  color: var(--brand);
  font-weight: 600;
  box-shadow: var(--shadow-hover);
}

/* Sticky Header with Glassmorphism & Gold Top Border */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250, 249, 246, 0.88);
  border-bottom: 1px solid rgba(13, 22, 34, 0.06);
  border-top: 3px solid var(--brand-2); /* Gold band at the absolute top of the viewport */
  box-shadow: 0 4px 20px rgba(13, 22, 34, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 1.5rem;
}

/* Brand Logo Layout */
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #1a324a);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .06em;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-weight: 700;
  color: var(--brand);
}

.brand-text small {
  color: var(--brand-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Navigation Links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav > a {
  color: var(--ink-soft);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: all 0.25s ease;
}

.site-nav > a.is-active,
.site-nav > a:hover {
  color: var(--brand-2);
  background: rgba(146, 116, 83, 0.05);
}

.site-nav > a.is-active::after {
  content: "";
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .15rem;
  height: 2px;
  background: var(--brand-2);
  border-radius: 999px;
}

/* Premium Buttons - Architectural and tactile */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.65rem;
  border-radius: var(--radius-sm); /* Structured shape over friendly rounded pills */
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 12px rgba(9, 23, 38, 0.12);
}

.btn-primary:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  box-shadow: 0 6px 20px rgba(146, 116, 83, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand-2);
}

.btn-secondary:hover {
  background: rgba(146, 116, 83, 0.04);
  color: var(--brand-2);
  border-color: var(--brand-2);
}

.btn-nav {
  padding: .65rem 1.25rem;
  background: transparent;
  border-color: var(--brand-2);
  color: var(--brand);
  font-size: 0.88rem;
}

.btn-nav:hover {
  background: var(--brand-2);
  color: #fff;
  border-color: var(--brand-2);
}

/* Mobile Toggle Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: .6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.25s ease;
}

/* Editorial Hero Layout */
.hero {
  padding: 3.5rem 0 4.5rem;
  background: radial-gradient(circle at 85% 20%, rgba(223, 210, 190, 0.18) 0%, rgba(250, 249, 246, 0) 65%);
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: .5rem;
  color: var(--brand-2);
  opacity: 0.5;
}

.breadcrumb a {
  color: var(--brand-2);
}

.breadcrumb a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  line-height: 1.12;
  margin: .5rem 0 1.2rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 64ch;
}

/* High-end Eyebrows with micro diamond symbol */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .95rem;
  border-radius: var(--radius-sm);
  background: rgba(146, 116, 83, 0.06);
  color: var(--brand-2);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow::before {
  content: "◆";
  font-size: 0.65rem;
  color: var(--brand-2);
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--line);
  transition: transform 0.4s ease;
}

.hero-media img:hover {
  transform: scale(1.01);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f3efe8 0%, rgba(243, 239, 232, 0.35) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 3rem;
  max-width: 72ch;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1.18;
  margin: .5rem 0 .8rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-heading p,
.lead,
.card p,
.legal-copy p,
.notice p {
  font-size: 1rem;
  line-height: 1.65;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  max-width: 72ch;
}

/* Cards Grids with consistent alignments & proportional heights */
.cards-2,
.cards-3 {
  display: grid;
  gap: 1.5rem;
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-2);
}

.card-body {
  padding: 2rem 2rem 1.35rem;
  flex-grow: 1;
}

.card-body h2,
.card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 0 0 .75rem;
  color: var(--ink);
}

.card-body p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-footer {
  padding: 0 2rem 2rem;
  background: transparent;
  border-top: none;
}

/* Refined interactive action link in card footers */
.card-footer a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color 0.25s ease;
}

.card-footer a:hover {
  color: var(--brand);
  text-decoration: none;
}

.card-footer a::after {
  content: "→";
  font-family: system-ui, sans-serif;
  transition: transform 0.25s ease;
}

.card-footer a:hover::after {
  transform: translateX(4px);
}

.icon-banner {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

/* Diamond checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin: .65rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-2);
  font-size: 0.72rem;
}

.statement {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--brand);
  text-align: center;
  font-style: italic;
  font-weight: 500;
}

.statement-link {
  text-align: center;
  margin-top: 1.5rem;
}

/* Team and Partners Showcase */
.team-grid .card,
.bio-card {
  height: 100%;
}

.team-card img,
.bio-card img {
  display: none;
}

.avatar-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.team-card-head,
.bio-card-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-bottom: 1px solid var(--line);
}

/* Gradients with outstanding visual weight */
.tone-laboral {
  background: linear-gradient(135deg, var(--brand) 0%, #152c42 100%);
  color: #fff;
}

.tone-familia {
  background: linear-gradient(135deg, #70553c 0%, #997e61 100%);
  color: #fff;
}

.avatar-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(9, 23, 38, 0.15);
}

.avatar-lg {
  width: 96px;
  height: 96px;
  font-size: 2rem;
}

.team-head-copy,
.bio-title {
  min-width: 0;
}

.team-kicker {
  margin: 0 0 .3rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.team-card h3,
.bio-title h2 {
  margin: 0;
  color: #fff;
  line-height: 1.15;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.team-meta,
.team-specialty {
  margin: .35rem 0 0;
  font-size: .9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.team-specialty {
  font-weight: 600;
  color: var(--brand-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

.team-card .card-body {
  padding-top: 1.5rem;
}

.bio-card .card-body {
  padding-top: 1.8rem;
}

.bio-card .card-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.bio-card-intro {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.contact-grid .check-list strong {
  color: var(--ink);
}

/* Call to Action Band */
.cta-band {
  padding: 3rem 0 5.5rem;
}

.cta-band-inner {
  background: linear-gradient(135deg, var(--brand) 0%, #152a42 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 3.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin: 0 0 .5rem;
  color: #fff;
  line-height: 1.2;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 60ch;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.cta-band .btn-primary:hover {
  background: var(--brand-2);
  color: #fff;
  border-color: var(--brand-2);
}

.cta-band .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* Notice box */
.notice {
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(146, 116, 83, 0.05);
  border: 1px solid rgba(146, 116, 83, 0.15);
  margin-top: 1.5rem;
}

.notice p {
  color: var(--brand-2);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Beautiful Accordions with dynamic animations */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: var(--brand-3);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 0;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--brand-2);
  font-weight: normal;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item div {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.625;
  color: var(--ink-soft);
}

/* Forms with active borders & gentle focus ring */
.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: .5rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-2);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(146, 116, 83, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .25rem;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0;
  color: var(--ok);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Brand Footer Section */
.site-footer {
  background: #090e16; /* Deep dark ink navy */
  color: #cad3df;
  margin-top: 4.5rem;
  border-top: 4px solid var(--brand-2); /* Gold brand line */
}

.footer-grid {
  padding: 4.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr;
  gap: 3.5rem;
}

.brand-footer {
  color: #fff;
  margin-bottom: 1.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 58px;
  border-radius: 10px;
  background: #0d1622;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.brand-footer.brand-logo img {
  height: 74px;
  border-radius: 12px;
  box-shadow: none;
  background: transparent;
}

.footer-copy {
  font-size: 0.92rem;
  line-height: 1.625;
  color: rgba(202, 211, 223, 0.78);
  margin: 1.25rem 0;
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(202, 211, 223, 0.45);
}

.site-footer h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin: 0 0 1.5rem;
}

.footer-nav,
.footer-list {
  display: grid;
  gap: .75rem;
}

.footer-nav a,
.footer-list a {
  color: rgba(202, 211, 223, 0.85);
  font-size: 0.92rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-nav a:hover,
.footer-list a:hover {
  color: var(--brand-3);
  text-decoration: none;
  transform: translateX(3px);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  font-size: 0.92rem;
  color: rgba(202, 211, 223, 0.75);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0 2rem;
  color: rgba(202, 211, 223, 0.45);
  font-size: 0.82rem;
}

/* Practice layout helpers */
.practice-grid .card,
.team-grid .card,
.contact-grid .card {
  height: 100%;
}

/* Adaptive Media Queries */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-media {
    order: -1; /* Display imagery on top for mobile users */
  }

  .cards-3,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cards-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
    text-align: center;
    justify-items: center;
    gap: 1.75rem;
  }

  .cta-band-inner .cta-actions {
    justify-content: center;
    width: 100%;
  }

  .brand-logo img {
    height: 52px;
  }

  .brand-footer.brand-logo img {
    height: 68px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    right: 1.25rem;
    top: 84px;
    width: min(320px, calc(100% - 2.5rem));
    background: rgba(250, 249, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    z-index: 100;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .btn-nav {
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
  }

  .header-inner {
    min-height: 88px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .brand-text strong {
    font-size: .98rem;
  }

  .brand-text small {
    font-size: .75rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .brand-logo img {
    height: 46px;
  }

  .brand-footer.brand-logo img {
    height: 60px;
  }

  .team-card-head,
  .bio-card-head {
    padding: 1.5rem;
  }

  .avatar-badge {
    width: 72px;
    height: 72px;
    font-size: 1.4rem;
  }

  .avatar-lg {
    width: 78px;
    height: 78px;
    font-size: 1.6rem;
  }

  .bio-card-intro {
    gap: 1rem;
  }
}
