/* Angie Pagán Law — Style guide from brand logo */
:root {
  --burgundy: #6b1a2a;
  --burgundy-dark: #4f121e;
  --charcoal: #3d3d3d;
  --charcoal-dark: #2a2a2a;
  --white: #ffffff;
  --cream: #f7f5f3;
  --gold: #c9a962;
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --border: #e5e0dc;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --max-width: 1200px;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: var(--burgundy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--burgundy-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: 1.5rem;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Top bar */
.top-bar {
  background: var(--charcoal-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar__badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  min-height: var(--header-height);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1;
  max-width: calc(100% - 3rem);
}

@media (max-width: 991px) {
  .site-header .container {
    gap: 0.5rem;
  }
}

.logo-link img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  min-width: 0;
}

.logo-text span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.12rem;
  text-transform: uppercase;
}

@media (min-width: 480px) {
  .logo-link img {
    width: 64px;
    height: 64px;
  }

  .logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }

  .logo-text span {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    margin-top: 0.15rem;
  }
}

/* Nav */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: var(--white);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}

.main-nav.is-open {
  transform: translateX(0);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li {
  border-bottom: 1px solid var(--border);
}

.main-nav a {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--burgundy);
}

.nav-cta {
  margin-top: 1.5rem;
}

.nav-cta .btn-primary,
.main-nav .btn-primary {
  color: var(--white);
}

.nav-cta .btn-primary:hover,
.main-nav .btn-primary:hover {
  color: var(--white);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    transform: none;
    padding: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .main-nav > ul {
    display: flex;
    gap: 0.25rem;
    align-items: center;
  }

  .main-nav > ul > li {
    border: none;
    position: relative;
  }

  .main-nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
  }

  .nav-cta {
    margin-top: 0;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--charcoal);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--charcoal-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--burgundy);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--burgundy-dark) 0%,
    var(--burgundy) 45%,
    var(--charcoal) 100%
  );
  color: var(--white);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 40%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: linear-gradient(135deg, var(--burgundy) 0%, transparent 70%);
  opacity: 0.25;
  transform: skewX(-12deg);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.hero-phone:hover {
  color: var(--gold);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-trust li {
  list-style: none;
}

/* Homepage announcement card (reference: bar president graphic) */
.announcement-box {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.15),
    0 20px 48px rgba(0, 0, 0, 0.4);
  background: var(--charcoal-dark);
  line-height: 0;
  max-width: 100%;
}

.announcement-box img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.hero-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.15);
  aspect-ratio: 4 / 5;
  max-height: 480px;
  line-height: 0;
  background: #e8ecf0;
}

.attorney-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1.08);
  transform-origin: center 42%;
}

/* Bio & credentials */
.bio-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.bio-block {
  display: grid;
  gap: 1.25rem;
}

.bio-block p {
  margin: 0;
  color: var(--text);
}

.about-intro {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-intro {
    grid-template-columns: minmax(260px, 340px) 1fr;
  }
}

.about-portrait {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  line-height: 0;
  background: #e8ecf0;
}

.credentials-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-top: 3px solid var(--burgundy);
  transition: transform 0.2s, box-shadow 0.2s;
}

.credential-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.credential-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--burgundy);
  margin-bottom: 0.35rem;
}

.credential-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.highlight-panel {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--charcoal));
  color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.highlight-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
}

.highlight-panel h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.highlight-panel p {
  opacity: 0.92;
  margin-bottom: 1rem;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.highlight-list li {
  padding-left: 1.5rem;
  position: relative;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.highlight-list--light {
  color: var(--text);
}

.highlight-list--light li::before {
  background: var(--burgundy);
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--burgundy);
  border-left: 4px solid var(--burgundy);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 0 0 1.5rem;
  line-height: 1.4;
}

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

.section--alt {
  background: var(--cream);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--charcoal));
  margin: 0.75rem auto 0;
}

.section-header p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.section--dark .section-header p,
.section--burgundy .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

/* Practice cards */
.practice-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.practice-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.practice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--charcoal));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.practice-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--burgundy);
}

.practice-card:hover::before {
  opacity: 1;
}

.practice-card h3 {
  margin-bottom: 0.5rem;
}

.practice-card h3 a {
  color: inherit;
  text-decoration: none;
}

.practice-card h3 a:hover {
  color: var(--burgundy);
}

.practice-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Trust stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.section--dark .stat-number,
.section--burgundy .stat-number {
  color: var(--gold);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.section--dark .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* Two column */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* CTA band */
.cta-band {
  background: linear-gradient(90deg, var(--burgundy) 50%, var(--charcoal) 50%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-left: 4px solid var(--burgundy);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--text);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--burgundy);
  transition: transform 0.2s;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--text-muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--burgundy);
  outline-offset: 1px;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-info-card h3 {
  margin-bottom: 1rem;
}

.contact-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-card li {
  margin-bottom: 1rem;
}

.contact-info-card a {
  font-weight: 600;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  background: var(--cream);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--burgundy-dark),
    var(--charcoal)
  );
  color: var(--white);
  padding: 3rem 0;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  opacity: 0.9;
  margin: 0;
  max-width: 50ch;
}

.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

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

/* Practice detail */
.content-prose {
  max-width: 720px;
}

.content-prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-prose ul {
  padding-left: 1.25rem;
}

.content-prose li {
  margin-bottom: 0.5rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  background: var(--charcoal-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

.site-footer li {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white) !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white) !important;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.social-links--light .social-link {
  border-color: var(--border);
  color: var(--text) !important;
}

.social-links--light .social-link:hover {
  background: var(--cream);
  color: var(--burgundy) !important;
  border-color: var(--burgundy);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* Floating call (mobile) */
.floating-call {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1001;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-sans);
  max-width: 22rem;
  margin: 0 auto;
  width: fit-content;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.floating-call:hover {
  background: var(--burgundy-dark);
  color: var(--white);
}

.floating-call__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.floating-call__label {
  line-height: 1.2;
}

@media (max-width: 991px) {
  .floating-call {
    display: inline-flex;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

/* Results table */
.results-list {
  display: grid;
  gap: 1rem;
}

.result-item {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--burgundy);
}

@media (min-width: 600px) {
  .result-item {
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    align-items: start;
  }
}

.result-type {
  font-weight: 700;
  color: var(--burgundy);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 45%;
  height: 120%;
  background: var(--burgundy);
  opacity: 0.15;
  transform: skewX(-8deg);
  pointer-events: none;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

