:root {
  --red: #b91c1c;
  --red-dark: #8f1717;
  --gold: #f2c94c;
  --ink: #1f2937;
  --muted: #5f6977;
  --line: #e7e1d8;
  --paper: #ffffff;
  --warm: #faf8f4;
  --footer: #161b22;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(31, 41, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--warm);
  line-height: 1.6;
  /* Improve text rendering across the site */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: var(--red);
  color: #fff;
  font-size: 0.9rem;
}

.topbar__inner,
.nav-shell,
.cta-band__inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__inner {
  min-height: 36px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  /* Add spacing between topbar and header content */
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  flex-shrink: 0;
}

.brand__banner {
  display: block;
  width: auto;
  height: auto;
  max-width: 480px;
  /* Edge fix: explicit aspect ratio containment */
  aspect-ratio: 500 / 161;
}

@media (max-width: 768px) {
  .brand__banner {
    max-width: 100%;
    width: auto;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Prevent wrapping - let text scale down instead */
  flex-wrap: nowrap;
  overflow: hidden;
}

.site-nav a {
  text-decoration: none;
  color: #394250;
  white-space: nowrap;
  flex-shrink: 1;
  font-size: clamp(0.75rem, 2.5vw, 0.94rem);
}

.site-nav a:hover,
.site-nav .is-active {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.btn--primary {
  background: var(--red);
  color: #fff;
}

.btn--primary:hover {
  background: var(--red-dark);
}

.btn--secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.btn--light {
  background: #fff;
  color: var(--red);
}

.btn--full {
  width: 100%;
}

.hero,
.page-hero,
.section {
  padding: 72px 0;
}

.hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.25rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 800;
}

.pill--red {
  border-color: #f3c7c7;
  background: #fff5f5;
  color: var(--red);
}

.hero-media,
.feature-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #eee;
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.hero-media img,
.feature-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-header h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-grid,
.service-grid,
.gallery-grid,
.testimonial-grid,
.faq-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.card,
.service-card,
.testimonial,
.faq-card,
.process-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(31, 41, 55, 0.04);
  padding: 22px;
}

.card h3,
.service-card h3,
.testimonial h3,
.faq-card h3,
.process-card h3 {
  margin: 0 0 8px;
  line-height: 1.18;
}

.card p,
.service-card p,
.testimonial p,
.faq-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card img,
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__body {
  padding: 20px;
}

.service-list {
  padding-left: 18px;
  color: var(--muted);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ddd;
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 30px 12px 12px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.quote-mark {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.cta-band {
  background: var(--red);
  color: #fff;
  padding: 48px 0;
}

.cta-band p {
  max-width: 620px;
  color: #ffe4e4;
}

.cta-band .eyebrow {
  color: var(--gold);
}

.site-footer {
  background: var(--footer);
  color: #c8d0da;
  padding: 48px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}

.brand--footer {
  color: #fff;
}

.site-footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0 0 7px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .topbar {
    font-size: 0.8rem;
  }

  .topbar__inner {
    min-height: 28px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .site-header {
    padding-top: max(4px, env(safe-area-inset-top));
    padding-bottom: 4px;
  }

  .nav-shell {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    min-height: 52px;
  }

  .brand {
    gap: 6px;
    flex-shrink: 1;
    max-width: calc(100% - 50px);
  }

  .brand__banner {
    max-width: 190px;
    width: auto;
    height: auto;
  }

  .brand__name {
    font-size: 1.15rem;
    white-space: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .brand__sub {
    font-size: 0.65rem;
    white-space: nowrap;
    /* Improve text rendering on mobile */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  /* Mobile navigation styles */
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    display: none;
    z-index: 100;
  }

  .site-nav[data-nav-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
  }

  .site-nav a:hover,
  .site-nav .is-active {
    background: var(--warm);
    color: var(--red);
  }

  .hero,
  .page-hero,
  .section {
    padding: 48px 0;
  }

  .card-grid,
  .service-grid,
  .testimonial-grid,
  .gallery-grid,
  .faq-grid,
  .process-grid,
  .form-grid,
  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
  }

  .cta-band__inner .btn {
    align-self: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer a {
    overflow-wrap: break-word;
    word-break: break-all;
  }

  /* Ensure proper spacing between topbar and header on mobile */
  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

/* --- Prototype Enhancements --- */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.trust-badge .stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.trust-badge .rating-text {
  color: var(--ink);
}

.hero-trust-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.hero-trust-footer i {
  color: var(--red);
  margin-right: 4px;
}

.media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.overlay-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.overlay-location {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--warm);
  color: var(--red);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.service-image-wrap {
  overflow: hidden;
}

.service-image-wrap img {
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.05);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  text-decoration: none;
}

.process-num {
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

/* --- Modal Styles --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-card {
  background: var(--paper);
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: modalPop 0.2s ease forwards;
}

@keyframes modalPop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.modal-head h2 {
  margin: 0;
  font-size: 1.5rem;
}

.modal-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.estimate-form {
  padding: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.estimate-form label {
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(185, 28, 28, 0.1);
}

.honeypot {
  display: none;
}

.fine-print {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
}

.success-state {
  text-align: center;
  padding: 40px 20px;
}

.success-state h3 {
  color: var(--red);
  margin-bottom: 10px;
}

/* ==========================================================================
   WIX POC & BENCHMARK FEATURE EXPANSIONS (Added June 2026)
   ========================================================================== */

/* 1. Our Specialties (Trust Cards) */
.specialties-section {
  padding: 50px 0;
  background: var(--warm);
  border-bottom: 1px solid var(--line);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.specialty-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.03);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.08);
}

.specialty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(185, 28, 28, 0.06);
  color: var(--red);
  font-size: 1.5rem;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.specialty-card:hover .specialty-icon {
  background: var(--red);
  color: #fff;
}

.specialty-card h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--ink);
}

.specialty-card p {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* 2. Auxiliary Services SEO Text Grid */
.aux-services-wrap {
  margin-top: 60px;
  padding: 40px;
  background: var(--warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.aux-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

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

.aux-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.aux-tag:hover {
  border-color: var(--red);
  background: rgba(185, 28, 28, 0.02);
}

.aux-tag i {
  color: var(--red);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* 3. Interactive FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 30px auto 0;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.01);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: var(--red);
}

.faq-item[open] {
  border-color: var(--line);
  box-shadow: 0 6px 16px rgba(31, 41, 55, 0.04);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  user-select: none;
  list-style: none; /* Hide default chrome marker */
  outline: none;
  color: var(--ink);
}

.faq-summary::-webkit-details-marker {
  display: none; /* Hide default safari marker */
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item:hover .faq-icon {
  color: var(--red);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-content {
  padding: 0 24px 20px;
  border-top: 0;
}

.faq-content p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Global Floating Action Button (FAB) */
.fab-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: fab-entrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fab-wrapper.fab-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fab-btn {
  box-shadow: 0 10px 25px rgba(185, 28, 28, 0.4);
  gap: 8px;
  font-weight: 800;
  padding: 12px 24px;
  height: auto;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transform: translateY(0);
}

.fab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(185, 28, 28, 0.5);
}

@media (max-width: 768px) {
  .fab-wrapper {
    bottom: 16px;
    right: 16px;
  }
  .fab-btn {
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}

@keyframes fab-entrance {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================================================
   Dynamic Screen Size & Safe Area Inset Handling (iOS & Mobile Optimization)
   ========================================================================== */

/* Safe Area Padding for Fixed Header & Floating Elements */
.site-header {
  padding-top: max(8px, env(safe-area-inset-top));
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}

.fab-wrapper {
  bottom: max(16px, env(safe-area-inset-bottom));
  right: max(16px, env(safe-area-inset-right));
}

/* Dynamic Viewport Height for Overlays & Modals (fixes iOS address bar jumping) */
.modal {
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.lightbox {
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100dvh;
}

/* Micro-adjustments for Compact Mobile Devices (< 380px e.g. iPhone SE/Mini) */
html[data-device-size="compact"] h1 {
  font-size: clamp(1.6rem, 7vw, 2.2rem);
}

html[data-device-size="compact"] .wrap {
  padding-left: 12px;
  padding-right: 12px;
}

html[data-device-size="compact"] .btn {
  padding: 10px 14px;
  font-size: 0.88rem;
}

html[data-device-size="compact"] .brand__banner {
  max-width: 180px;
}

