:root {
  --navy: #061f55;
  --navy2: #092b73;
  --red: #e30613;
  --red2: #c90010;
  --light: #f8fbff;
  --border: #d9e1ef;
  --text: #0b2258;
  --muted: #44557a;
  --shadow: 0 18px 36px rgba(6, 31, 85, .13);
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}

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

a { color: inherit; }

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

.skip-link {
  position: absolute;
  left: -1000px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  z-index: 100;
}

.skip-link:focus { left: 8px; }

.top-ribbon {
  background: linear-gradient(90deg, #08245f, #061b49);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.ribbon-inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.flag { margin-right: 8px; }

.rapid { white-space: nowrap; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(6,31,85,.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: 360px 1fr 240px;
  align-items: center;
  gap: 24px;
}

.logo-link img {
  width: 330px !important;
  max-height: 118px !important;
  object-fit: contain;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
}

.main-menu a {
  text-decoration: none;
  color: var(--navy);
}

.main-menu a.is-active { color: var(--red); }

.nav-dropdown {
  position: relative;
  padding: 34px 0;
}

.nav-dropdown > a span {
  color: var(--navy);
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: -18px;
  min-width: 235px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

.dropdown-menu a:hover {
  background: var(--light);
  color: var(--red);
}

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

.header-call {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 8px;
  box-shadow: 0 12px 22px rgba(227,6,19,.26);
}

.header-call strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.header-call em {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  margin-top: 8px;
}

.phone-icon {
  font-size: 28px;
  line-height: 1;
}

.mobile-toggle {
  display: none;
  justify-self: end;
  border: 0;
  background: var(--navy);
  border-radius: 8px;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 28px 0 18px;
}

.flag-bg {
  position: absolute;
  inset: 0 auto 0 0;
  width: 57%;
  opacity: .36;
  background:
    radial-gradient(circle at 7% 9%, rgba(6,31,85,.35), transparent 26%),
    repeating-linear-gradient(168deg, rgba(227,6,19,.17) 0 30px, rgba(255,255,255,.4) 30px 82px);
  clip-path: polygon(0 0,100% 0,83% 72%,0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 52px;
  align-items: center;
}

.hero-copy {
  padding: 52px 0 28px;
}

.red-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 950;
  letter-spacing: .04em;
  font-size: 15px;
}

h1, h2, h3 {
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.03;
}

.hero-copy h1 {
  font-size: clamp(44px, 6vw, 70px);
  letter-spacing: -.055em;
  max-width: 610px;
}

.hero-copy h2 {
  color: var(--red);
  font-size: clamp(28px, 4vw, 43px);
  letter-spacing: -.035em;
  margin-bottom: 22px;
}

.hero-copy p {
  color: var(--text);
  max-width: 520px;
  font-weight: 700;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 28px 0 36px;
}

.btn-red, .btn-white, .btn-navy, .btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border-radius: 7px;
  padding: 14px 22px;
  font-weight: 950;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn-red, .btn-submit {
  background: var(--red);
  color: #fff;
  box-shadow: 0 9px 22px rgba(227,6,19,.24);
}

.btn-white {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

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

.btn-navy span {
  font-size: 26px;
  margin-left: 20px;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(135px, 1fr));
  gap: 16px;
  max-width: 520px;
}

.trust-cards div {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 17px 13px;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 9px;
  align-items: center;
  box-shadow: 0 8px 18px rgba(6,31,85,.04);
}

.trust-cards span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 950;
}

.trust-cards strong {
  font-size: 13px;
  line-height: 1.2;
}

.trust-cards small {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.inmate-form {
  background: rgba(255,255,255,.98);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 27px;
  box-shadow: var(--shadow);
}

.form-title-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.avatar-icon {
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  position: relative;
}

.avatar-icon:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 11px;
}

.avatar-icon:after {
  content: "";
  width: 30px;
  height: 17px;
  border-radius: 18px 18px 8px 8px;
  background: white;
  position: absolute;
  bottom: 10px;
}

.form-title-row h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.form-title-row p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 14px;
}

.inmate-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 950;
  color: var(--navy);
}

.inmate-form label b, .form-section-label { color: var(--red); }

.wide { grid-column: 1 / -1; }

.inmate-form input,
.inmate-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 9px 11px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.inmate-form input { height: 41px; }

.inmate-form textarea {
  min-height: 82px;
  resize: vertical;
}

.inmate-form input:focus,
.inmate-form textarea:focus {
  outline: 3px solid rgba(6,31,85,.12);
  border-color: var(--navy);
}

.form-section-label {
  font-weight: 950;
  font-size: 13px;
  margin: 20px 0 10px;
}

.btn-submit {
  width: 100%;
  margin-top: 21px;
  font-size: 15px;
}

.privacy-line {
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  margin: 16px 0 0;
  font-size: 14px;
}

.hide-me {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

.feature-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 31px 0;
  background: #fff;
}

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

.feature-grid article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: start;
  padding: 0 25px;
  border-right: 1px solid var(--border);
}

.feature-grid article:last-child { border-right: 0; }

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 20px;
}

.feature-grid h3 {
  font-size: 15px;
  margin-bottom: 9px;
}

.feature-grid p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.reviews-section {
  padding: 20px 0 26px;
}

.section-title {
  display: grid;
  grid-template-columns: 85px auto 85px;
  gap: 27px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 0 16px;
}

.section-title span,
.office-title span {
  height: 3px;
  background: var(--red);
}

.section-title h2 {
  font-size: 25px;
  letter-spacing: .02em;
  margin: 0;
}

.stars {
  grid-column: 1 / -1;
  margin-top: -8px;
  color: var(--red);
  letter-spacing: 5px;
  font-size: 20px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  max-width: 1070px;
  margin: 0 auto;
}

.review-grid article {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 24px 18px;
  min-height: 165px;
}

.review-grid p {
  color: var(--text);
  font-weight: 750;
  font-size: 14px;
  margin-bottom: 17px;
}

.review-grid strong,
.review-grid small {
  display: block;
  font-weight: 900;
  color: var(--navy);
}

.review-grid small { margin-top: 5px; }

.review-grid div {
  color: var(--red);
  letter-spacing: 4px;
  margin-top: 9px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 12px;
}

.slider-dots b,
.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd3df;
}

.slider-dots b { background: var(--red); }

.service-ready {
  padding: 0 0 10px;
}

.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.services-card,
.ready-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 255px;
  overflow: hidden;
}

.services-card {
  display: grid;
  grid-template-columns: 1fr 185px;
  background: linear-gradient(105deg, #fff 0%, #fff 60%, #f7f4f0 100%);
}

.services-card > div { padding: 25px 25px; }

.services-card h2,
.ready-card h2 {
  font-size: 20px;
  letter-spacing: .02em;
}

.services-card ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.services-card li {
  font-weight: 850;
  font-size: 14px;
  padding-left: 27px;
  position: relative;
}

.services-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 950;
}

.services-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mini-note {
  margin: 32px 0 0;
  padding-left: 28px;
  color: var(--navy);
  font-weight: 750;
  font-size: 13px;
  position: relative;
}

.mini-note:before {
  content: "♡";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 950;
}

.ready-card {
  padding: 25px 32px;
  background: #fff;
}

.ready-card ol {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  gap: 10px;
}

.ready-card li {
  counter-increment: step;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  padding-left: 38px;
  position: relative;
}

.ready-card li:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -3px;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 950;
}

.ready-card .btn-navy {
  width: 88%;
  margin-top: 4px;
  font-size: 18px;
}

.service-area-section {
  padding: 10px 0 6px;
}

.section-title.compact { margin-bottom: 0; }

.area-sub {
  text-align: center;
  margin: -2px 0 14px;
  color: var(--navy);
  font-weight: 850;
  font-size: 13px;
}

.area-pills {
  width: min(860px, 100%);
  margin: 0 auto 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 25px;
}

.area-pills a {
  border: 1px solid var(--border);
  border-radius: 999px;
  text-align: center;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 850;
  background: white;
}

.office-title {
  max-width: 780px;
  margin: 14px auto 13px;
  text-align: center;
  display: grid;
  grid-template-columns: 100px auto 100px;
  justify-content: center;
  align-items: center;
  gap: 17px;
}

.office-title h2 {
  margin: 0;
  font-size: 20px;
}

.office-title p {
  grid-column: 1 / -1;
  margin: -6px 0 0;
  color: var(--navy);
  font-weight: 750;
  font-size: 13px;
}

.office-photos {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.office-photos figure {
  margin: 0;
  border: 2px solid #0a3b86;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.office-photos img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.office-photos figcaption {
  padding: 8px;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
  border-top: 1px solid var(--border);
}

.scam-strip {
  background:
    radial-gradient(circle at 90% 50%, rgba(255,255,255,.1), transparent 22%),
    linear-gradient(90deg, #07215b, #061b49);
  color: white;
  padding: 18px 0;
}

.scam-inner {
  display: grid;
  grid-template-columns: 78px 1fr 280px;
  align-items: center;
  gap: 18px;
}

.scam-icon {
  width: 72px;
  height: 72px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 43px;
}

.scam-strip h2 {
  color: white;
  margin: 0 0 4px;
  font-size: 20px;
  letter-spacing: .03em;
}

.scam-strip p {
  color: white;
  margin: 0;
  font-weight: 750;
  font-size: 14px;
  max-width: 630px;
}

.local-office-card {
  background: white;
  color: var(--navy);
  border-radius: 8px;
  text-decoration: none;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.local-office-card span {
  grid-row: span 2;
  color: var(--red);
  font-size: 31px;
}

.local-office-card small {
  display: block;
  color: var(--navy);
  font-weight: 850;
}

.local-office-card strong {
  color: var(--red);
  font-size: 24px;
  font-weight: 950;
}

.site-footer { background: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.05fr .8fr;
  gap: 34px;
  padding: 25px 0 22px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img {
  width: 165px;
  max-height: 75px;
  object-fit: contain;
  margin-bottom: 8px;
}

.footer-brand p,
.footer-col p,
.footer-col li {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}

.footer-col {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}

.footer-col h3 {
  font-size: 14px;
  margin-bottom: 18px;
}

.footer-col a {
  text-decoration: none;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cards span {
  height: 38px;
  border-radius: 5px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: #0a43b2;
  background: white;
  font-weight: 950;
}

.footer-bottom {
  background: #041842;
  color: white;
  font-size: 12px;
}

.bottom-inner {
  min-height: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-inner p { margin: 0; }

.bottom-inner a {
  color: white;
  text-decoration: none;
}

.bottom-inner span { margin: 0 10px; }

.page-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.97)),
    repeating-linear-gradient(165deg, rgba(227,6,19,.18) 0 28px, rgba(255,255,255,.1) 28px 78px);
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -.05em;
}

.page-hero p {
  color: var(--text);
  font-size: 19px;
  font-weight: 750;
  max-width: 800px;
}

.content-section { padding: 70px 0; }

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

.text-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.text-split p,
.prose p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.blue-card,
.contact-card,
.card-grid article,
.faq-wrap details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(6,31,85,.06);
  padding: 28px;
}

.blue-card {
  background: var(--navy);
  color: white;
}

.blue-card h3,
.blue-card li { color: white; }

.blue-card li {
  margin-bottom: 10px;
  font-weight: 800;
}

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

.card-grid article h2 { font-size: 25px; }

.card-grid article p {
  color: var(--muted);
  font-weight: 650;
}

.number-list {
  padding-left: 22px;
  font-weight: 800;
  color: var(--text);
}

.mini-form-panel .inmate-form { box-shadow: none; }

.faq-wrap {
  max-width: 920px;
  display: grid;
  gap: 16px;
}

.faq-wrap details { padding: 20px 24px; }

.faq-wrap summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 950;
  font-size: 20px;
}

.faq-wrap p {
  color: var(--muted);
  font-weight: 650;
}

.contact-card img {
  margin-top: 18px;
  border-radius: 8px;
  width: 100%;
  max-height: 310px;
  object-fit: cover;
}

.huge-phone {
  display: block;
  color: var(--red);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 950;
  text-decoration: none;
  margin: 12px 0;
}

.prose { max-width: 880px; }

.prose h2 { margin-top: 32px; }

.single-page-office {
  background: var(--light);
  padding: 50px 0;
}

.thanks-page { text-align: center; }

.center-actions { justify-content: center; }

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 190px 1fr;
  }

  .header-call {
    grid-column: 2;
    justify-self: end;
  }

  .main-menu {
    order: 3;
    grid-column: 1 / -1;
    padding-bottom: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy { padding-top: 30px; }
}

@media (max-width: 860px) {
  .ribbon-inner {
    flex-direction: column;
    justify-content: center;
    padding: 7px 0;
    text-align: center;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 80px;
  }

  .logo-link img { width: 195px; max-height: 82px; }

  .mobile-toggle { display: block; }

  .main-menu {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-top: 1px solid var(--border);
  }

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

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

  .nav-dropdown { padding: 0; }

  .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 18px;
  }

  .header-call {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: center;
    margin-bottom: 12px;
  }

  .hero-section { padding-top: 14px; }

  .feature-grid,
  .two-cards,
  .text-split,
  .card-grid,
  .footer-grid,
  .scam-inner {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
  }

  .feature-grid article:last-child { border-bottom: 0; }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .office-photos { grid-template-columns: 1fr; }

  .area-pills { grid-template-columns: 1fr 1fr; }

  .footer-col {
    border-left: 0;
    padding-left: 0;
  }

  .scam-inner { text-align: left; }
}

@media (max-width: 580px) {
  .container { width: min(var(--max), calc(100% - 24px)); }

  .hero-copy h1 { font-size: 42px; }

  .trust-cards,
  .form-grid,
  .area-pills {
    grid-template-columns: 1fr;
  }

  .form-title-row { grid-template-columns: 1fr; }

  .section-title,
  .office-title {
    grid-template-columns: 40px auto 40px;
    gap: 10px;
  }

  .services-card { grid-template-columns: 1fr; }

  .services-card img {
    height: 170px;
    width: 100%;
  }

  .ready-card .btn-navy { width: 100%; }

  .bottom-inner {
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
  }
}

/* Strong logo size override added after all other rules - larger desktop and mobile */
.site-header .logo-link {
  display: flex !important;
  align-items: center !important;
}

.site-header .logo-link img {
  width: 360px !important;
  max-width: 360px !important;
  max-height: 128px !important;
  height: auto !important;
  object-fit: contain !important;
}

.site-header .header-inner {
  min-height: 136px !important;
  grid-template-columns: 390px 1fr 240px !important;
}

@media (max-width: 1080px) {
  .site-header .header-inner {
    grid-template-columns: 340px 1fr !important;
    min-height: 126px !important;
  }

  .site-header .logo-link img {
    width: 320px !important;
    max-width: 320px !important;
    max-height: 116px !important;
  }
}

@media (max-width: 860px) {
  .site-header .header-inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
    min-height: 124px !important;
    gap: 10px !important;
  }

  .site-header .logo-link img {
    width: 285px !important;
    max-width: 74vw !important;
    max-height: 112px !important;
  }
}

@media (max-width: 580px) {
  .site-header .header-inner {
    min-height: 118px !important;
  }

  .site-header .logo-link img {
    width: 275px !important;
    max-width: 76vw !important;
    max-height: 108px !important;
  }
}

@media (max-width: 420px) {
  .site-header .logo-link img {
    width: 255px !important;
    max-width: 75vw !important;
    max-height: 102px !important;
  }
}
