:root {
  --ink: #101726;
  --muted: #647084;
  --line: #dce3ec;
  --brand: #0f5c8c;
  --brand-dark: #073b63;
  --accent: #f5b335;
  --green: #0d7a5f;
  --soft: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(16, 23, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled,
.site-header.open {
  background: rgba(7, 59, 99, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--accent);
  color: #172033;
  font-weight: 800;
  font-size: 24px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  font-size: 12px;
  opacity: 0.82;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.dropdown-trigger {
  opacity: 0.92;
}

.main-nav > a.active,
.nav-dropdown.active > .dropdown-trigger {
  color: var(--accent);
  opacity: 1;
}

.main-nav > a.active {
  position: relative;
}

.main-nav > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent);
}

.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.dropdown-trigger::after {
  content: "v";
  font-size: 10px;
  color: var(--accent);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  display: none;
  min-width: 230px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.dropdown-menu a.active {
  color: var(--brand);
  background: #e8f3fb;
  font-weight: 800;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #172033;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(5, 23, 42, 0.88), rgba(5, 23, 42, 0.58) 48%, rgba(5, 23, 42, 0.22));
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #172033;
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn.secondary-dark {
  background: #243044;
  color: var(--white);
}

.btn.full {
  width: 100%;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 72px;
  z-index: 1;
  width: min(320px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-card strong {
  display: block;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
  margin: 8px 0 12px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--brand-dark);
  color: var(--white);
}

.stats-band div {
  padding: 28px clamp(16px, 3vw, 38px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  font-size: 34px;
  line-height: 1;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  margin-top: 6px;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 38px;
  padding: 82px clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trust-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.trust-grid i {
  color: var(--brand);
  font-size: 30px;
}

.trust-grid p {
  color: var(--muted);
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: start;
  background: var(--soft);
}

.section-copy p {
  color: var(--muted);
  font-size: 17px;
}

.about-grid,
.service-grid,
.process-grid,
.team-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

.about-grid {
  grid-template-columns: 1fr;
}

.about-grid article,
.service-card,
.process-grid article,
.team-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 23, 38, 0.06);
}

.about-grid i,
.service-card i {
  color: var(--brand);
  font-size: 34px;
}

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

.service-card p,
.process-grid p,
.team-grid span,
.project-card p,
.contact-section p {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #384557;
  font-size: 14px;
  font-weight: 600;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

.service-link::after {
  content: ">";
  margin-left: 8px;
  color: var(--accent);
}

.page-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 72px) 66px;
  color: var(--white);
  overflow: hidden;
}

.page-hero img,
.page-hero::before {
  position: absolute;
  inset: 0;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::before {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 23, 42, 0.9), rgba(5, 23, 42, 0.54) 58%, rgba(5, 23, 42, 0.2));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 74px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
}

.detail-section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: start;
}

.detail-copy p {
  color: var(--muted);
  font-size: 17px;
}

.scope-panel {
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: 0 12px 30px rgba(16, 23, 38, 0.07);
}

.scope-list,
.info-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.scope-list li,
.info-list li {
  position: relative;
  padding-left: 28px;
  color: #344155;
  font-weight: 600;
}

.scope-list li::before,
.info-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
  font-weight: 900;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) 86px;
}

.feature-band article {
  padding: 24px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: var(--white);
}

.feature-band p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 52px clamp(18px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.cta-strip p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
}

.simple-form {
  display: grid;
  gap: 12px;
}

.simple-form input,
.simple-form select,
.simple-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.simple-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-success,
.form-error {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.form-success {
  color: #075f47;
  background: #dff7ef;
}

.form-error {
  color: #842029;
  background: #f8d7da;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: var(--soft);
  color: #344155;
  font-size: 13px;
  text-transform: uppercase;
}

.inline-form {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.inline-form select {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sectors-section {
  background: #ffffff;
}

.sectors-section .section-heading p {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sector-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.sector-grid i {
  color: var(--green);
  font-size: 32px;
}

.sector-grid p {
  color: var(--muted);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: center;
  padding: 92px clamp(18px, 5vw, 72px);
  background: #10263d;
  color: var(--white);
}

.image-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-feature p {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
  font-weight: 800;
}

.process-section,
.projects-section {
  background: var(--soft);
}

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

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #dcecf7;
  color: var(--brand-dark);
  font-weight: 800;
}

.anniversary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 64px clamp(18px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

.anniversary p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.86);
}

.milestone {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.milestone strong,
.milestone span {
  display: block;
}

.milestone strong {
  font-size: 38px;
  line-height: 1;
}

.milestone span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

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

.project-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(16, 23, 38, 0.08);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.project-card div {
  padding: 20px;
}

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

.team-grid p {
  margin-bottom: 10px;
  color: var(--brand);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: start;
  padding: 92px clamp(18px, 5vw, 72px);
  background: #f8fafc;
}

.contact-panel {
  flex-direction: column;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel a,
.contact-panel p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
}

.contact-panel i {
  color: var(--brand);
  font-size: 21px;
  margin-top: 2px;
}

.site-footer {
  padding: 52px clamp(18px, 5vw, 72px) 24px;
  background: #071b2d;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 32px;
}

.footer-logo {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.site-footer h3 {
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer span,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #15a86b;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  font-size: 26px;
}

.admin-body {
  background: #eef3f8;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px;
  background: #071b2d;
  color: var(--white);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.admin-brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.admin-nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(245, 179, 53, 0.16);
  color: var(--white);
}

.admin-nav a.active {
  box-shadow: inset 3px 0 0 var(--accent);
}

.admin-content {
  min-width: 0;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.admin-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-user {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 800;
}

.admin-body .detail-section {
  padding: 34px clamp(18px, 4vw, 44px);
}

.admin-body .feature-band {
  padding: 0;
}

.admin-body .stats-band {
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 1020px) {
  .hero {
    min-height: 820px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }

  .about-section,
  .image-feature,
  .anniversary,
  .contact-section,
  .trust-section,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .sector-grid,
  .process-grid,
  .feature-band,
  .footer-grid,
  .project-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .milestone {
    max-width: 420px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 10px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .main-nav > a.active::after {
    display: none;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px;
  }

  .nav-dropdown.open .dropdown-trigger::after {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 8px 12px;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu {
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 760px;
    padding: 118px 18px 42px;
  }

  .page-hero {
    min-height: 560px;
    padding: 112px 18px 46px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 23, 42, 0.9), rgba(5, 23, 42, 0.68));
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-band,
  .service-grid,
  .sector-grid,
  .process-grid,
  .feature-band,
  .footer-grid,
  .trust-grid,
  .project-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section,
  .image-feature,
  .contact-section,
  .trust-section,
  .detail-section {
    padding: 64px 18px;
  }

  .feature-band {
    padding: 0 18px 64px;
  }

  .cta-strip {
    align-items: stretch;
    flex-direction: column;
    padding: 46px 18px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

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

  .admin-topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .anniversary {
    padding: 54px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }
}
