.site-header,
.site-header .header-bar,
.site-header .container {
  overflow: visible;
}
.nav-drop { position: relative; z-index: 80; }
.nav-drop > button svg {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.nav-drop .nav-panel { display: none; pointer-events: auto; }
.nav-drop.is-open .nav-panel,
.nav-drop:hover .nav-panel,
.nav-drop:focus-within .nav-panel { display: block; }
.nav-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  padding-top: 8px;
  transform: translateX(-50%);
  background: transparent;
  box-shadow: none;
}
.nav-panel-inner {
  min-width: 16rem;
  max-height: 24rem;
  overflow: auto;
  border-radius: 0.75rem;
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.nav-panel-areas {
  left: 50%;
  transform: translateX(-45%);
}
.nav-panel-areas .nav-panel-inner {
  width: 48rem;
  max-width: min(48rem, calc(100vw - 2rem));
  max-height: min(75vh, 32rem);
}
.nav-areas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.25rem 0.5rem 0.6rem;
}
.nav-areas-head span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.nav-areas-head a {
  padding: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #404040;
}
.nav-areas-head a:hover {
  background: transparent;
  color: hsl(var(--brand));
  text-decoration: underline;
}
.nav-areas-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
}
.nav-areas-grid a {
  padding: 0.45rem 0.5rem;
  font-size: 0.8rem;
  pointer-events: auto;
}
.nav-panel a {
  display: block;
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #171717;
}
.nav-panel a:hover {
  background: hsl(var(--muted));
  color: hsl(var(--brand));
}
.site-header[data-home="true"] .header-bar {
  background: transparent !important;
  box-shadow: none;
  border-bottom: 0;
}
.site-header[data-home="true"] .header-bar.is-compact {
  background: rgb(10 10 10 / 0.9) !important;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  backdrop-filter: blur(12px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
@media (max-width: 1023px) {
  /* Home mobile: transparent on hero top; white sticky as soon as user scrolls */
  .site-header[data-home="true"] .header-bar.is-compact {
    background: #fff !important;
    box-shadow: 0 10px 28px rgb(0 0 0 / 0.08);
    border-bottom: 1px solid #e5e5e5;
    backdrop-filter: none;
  }
  .site-header[data-home="true"] .header-bar.is-compact [data-open-menu] {
    background: #0d2b4b;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
}
.mobile-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: #0d2b4b;
  color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
.mobile-sheet.is-open { display: flex; flex-direction: column; }
.mobile-sheet-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  background: rgb(13 43 75 / 0.98);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}
.mobile-sheet-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: transparent;
  color: #fff;
}
.mobile-sheet-close svg { color: #fff; stroke: #fff; }
.mobile-sheet-nav {
  padding: 0.35rem 1.15rem 1.25rem;
}
.mobile-sheet a,
.mobile-acc > button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  cursor: pointer;
}
.mobile-sheet a:hover,
.mobile-acc > button:hover { color: hsl(var(--brand-glow)); }
.mobile-acc > button svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: rgb(255 255 255 / 0.55);
  transition: transform 0.2s ease;
}
.mobile-acc.is-open > button svg { transform: rotate(180deg); }
.mobile-acc-panel { display: none; padding: 0.25rem 0 0.75rem; }
.mobile-acc.is-open > .mobile-acc-panel { display: block; }
.mobile-acc-panel a {
  padding: 0.55rem 0.15rem 0.55rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.82);
  border-bottom: 0;
}
.mobile-all-areas {
  color: hsl(var(--brand-glow)) !important;
  font-size: 0.9rem !important;
  padding-left: 0.75rem !important;
}
.mobile-states {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.75rem;
  padding: 0.15rem 0 0.35rem;
}
.mobile-states a {
  padding: 0.45rem 0.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.78);
  border-bottom: 0;
}
.mobile-sheet-cta {
  margin-top: auto;
  position: sticky;
  bottom: 0;
  padding: 1rem 1.15rem 1.35rem;
  display: grid;
  gap: 0.7rem;
  background: #0d2b4b;
  border-top: 1px solid rgb(255 255 255 / 0.08);
}
.mobile-book,
.mobile-call {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-bottom: 0 !important;
  border-radius: 0.5rem;
  padding: 0.9rem 1rem !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-book {
  background: hsl(var(--brand));
  color: #fff !important;
}
.mobile-call {
  border: 1px solid rgb(255 255 255 / 0.25) !important;
  color: #fff !important;
}
.faq-a { display: none; padding-bottom: 1rem; color: hsl(var(--muted-foreground)); }
.faq-item.is-open .faq-a { display: block; }
.faq-item.is-open [data-faq-btn] svg { transform: rotate(180deg); }
[data-lightbox] {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.88);
  padding: 1.5rem;
}
[data-lightbox].is-open { display: flex; }
[data-lightbox] img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.site-header .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header .site-logo,
.site-header .site-logo-mobile,
.site-footer .site-logo-footer {
  width: auto !important;
  object-fit: contain;
}
.site-header .site-logo {
  height: 52px !important;
  max-width: 240px !important;
}
.site-header .site-logo-mobile,
.mobile-sheet img {
  height: 48px !important;
  max-width: 200px !important;
}
.site-footer .site-logo-footer {
  height: 72px !important;
  max-width: 280px !important;
}
.site-header nav[aria-label="Primary"] {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .site-header .container {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) auto;
    align-items: center;
  }
  .site-header nav[aria-label="Primary"] {
    justify-self: center;
  }
  .site-header .site-logo {
    height: 56px !important;
  }
}
.site-header a[aria-current="page"] {
  color: hsl(var(--brand));
}
.mobile-kicker {
  margin: 0.75rem 0 0.25rem;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--brand-glow));
}
[data-area-block][hidden] {
  display: none;
}

/* Native selects inherit white-on-white + border-0 on location heroes. Match the text inputs. */
#root select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 3rem;
  border: 1px solid #d4d4d4;
  border-radius: 0.375rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  color: #171717;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 0 2.5rem 0 0.75rem;
  cursor: pointer;
}
#root select:focus {
  outline: none;
  border-color: hsl(var(--brand));
  box-shadow: 0 0 0 2px hsl(var(--brand) / 0.35);
}
#root select:invalid,
#root select option[disabled] {
  color: #737373;
}
#root select option {
  color: #171717;
}

/* Landscape bottom request form (all pages except Contact) */
.bottom-request-shell {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
.bottom-request-aside {
  padding: 0.25rem 0 0;
}
.bottom-request-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.bottom-request-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}
.bottom-request-lead {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  color: rgb(255 255 255 / 0.72);
  font-size: 1rem;
  line-height: 1.6;
}
.bottom-request-points {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.bottom-request-points li {
  position: relative;
  padding-left: 1rem;
  color: rgb(255 255 255 / 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}
.bottom-request-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: hsl(var(--brand));
}
.bottom-request-call {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  transition: color 0.2s ease;
}
.bottom-request-call:hover {
  color: hsl(var(--brand-glow));
}
.bottom-request-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background: #0d2b4b;
  border: 1px solid #262626;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.45);
  text-align: center;
}
.bottom-request-form-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.bottom-request-grid {
  display: grid;
  gap: 0.85rem;
}
.bottom-request-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  height: 3.5rem;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 0.5rem;
  background: hsl(var(--brand));
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  cursor: pointer;
  border-bottom: 0 !important;
}
.bottom-request-submit:hover {
  background: hsl(var(--brand-dark));
  color: #fff !important;
}
.bottom-request-note {
  margin: 0;
  color: rgb(255 255 255 / 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .bottom-request-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bottom-request-wide {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .bottom-request-shell {
    grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
  }
  .bottom-request-form {
    padding: 1.75rem 1.75rem;
  }
  .bottom-request-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .bottom-request-wide {
    grid-column: 1 / -1;
  }
  .bottom-request-submit {
    width: 100%;
  }
}

/* Contact page: call-only panel */
.contact-call {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, hsl(var(--brand) / 0.22), transparent 55%),
    linear-gradient(180deg, #0d2b4b 0%, #1e3a5f 100%);
  color: #fff;
  border-top: 1px solid #262626;
  padding: 8.5rem 0 4rem;
}
@media (min-width: 640px) {
  .contact-call { padding: 9.5rem 0 5rem; }
}
@media (min-width: 1024px) {
  .contact-call { padding: 10.5rem 0 6rem; }
}
.contact-call-inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}
.contact-call-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.contact-call-title {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}
.contact-call-lead {
  margin: 1rem auto 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.7);
}
.contact-call-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: color 0.2s ease, transform 0.2s ease;
}
.contact-call-phone:hover {
  color: hsl(var(--brand)) !important;
  transform: translateY(-2px);
}
.contact-call-phone svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  color: hsl(var(--brand));
}
.contact-call-meta {
  margin: 0.65rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.45);
}
.contact-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  min-width: min(100%, 18rem);
  height: 3.5rem;
  padding: 0 1.75rem;
  border-radius: 0.5rem;
  background: hsl(var(--brand));
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-call-btn:hover {
  background: hsl(var(--brand-dark));
  color: #fff !important;
  transform: translateY(-1px);
}
.contact-call-expect {
  display: grid;
  gap: 1rem;
  margin: 2.75rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  list-style: none;
  text-align: left;
}
@media (min-width: 768px) {
  .contact-call-expect {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.contact-call-expect li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.contact-call-step {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: hsl(var(--brand) / 0.15);
  border: 1px solid hsl(var(--brand) / 0.45);
  color: hsl(var(--brand));
  font-size: 0.85rem;
  font-weight: 900;
}
.contact-call-expect h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}
.contact-call-expect p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgb(255 255 255 / 0.58);
}

/* Blog */
.blog-shell {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .blog-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .blog-shell {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, hsl(var(--brand) / 0.28), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 80%, hsl(var(--brand) / 0.12), transparent 45%),
    linear-gradient(165deg, #0d2b4b 0%, #1e3a5f 55%, #0a1f38 100%);
  color: #fff;
}
@media (min-width: 640px) {
  .blog-hero { padding: 9rem 0 3.5rem; }
}
.blog-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.blog-hero-title {
  margin: 0.75rem 0 0;
  max-width: 18ch;
  font-size: clamp(2.1rem, 9vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}
.blog-hero-title span {
  display: block;
  color: hsl(var(--brand));
}
.blog-hero-lead {
  margin: 1.1rem 0 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.72);
}
@media (min-width: 640px) {
  .blog-hero-lead { font-size: 1.05rem; }
}
.blog-featured {
  padding: 1.25rem 0;
  background: #f5f5f5;
}
.blog-index {
  padding: 0 0 4rem;
  background: #f5f5f5;
}
@media (min-width: 640px) {
  .blog-featured { padding: 1.5rem 0 1.75rem; }
  .blog-index { padding: 0 0 5rem; }
}
.blog-featured-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  width: 100%;
  background: #0d2b4b;
  color: #fff;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: transform 0.35s ease;
}
.blog-featured-card:hover {
  transform: translateY(-3px);
}
@media (min-width: 900px) {
  .blog-featured-card {
    grid-template-columns: 1.15fr 1fr;
    min-height: 26rem;
  }
}
.blog-featured-media {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .blog-featured-media { min-height: 18rem; }
}
.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-featured-card:hover .blog-featured-media img {
  transform: scale(1.05);
}
.blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.35rem 1.15rem 1.5rem;
}
@media (min-width: 640px) {
  .blog-featured-body { padding: 1.75rem 1.5rem 2rem; }
}
@media (min-width: 900px) {
  .blog-featured-body { padding: 2.5rem 2.75rem; }
}
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.blog-featured-title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.35rem, 4.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
}
.blog-featured-excerpt {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.68);
}
.blog-meta {
  margin: 1.1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.45);
}
.blog-featured .blog-meta { color: rgb(255 255 255 / 0.5); }
.blog-read {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.blog-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  text-decoration: none !important;
  border-bottom: 0 !important;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 1px 0 rgb(0 0 0 / 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgb(0 0 0 / 0.35);
}
.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d2b4b;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.06);
}
.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem 1.1rem 1.35rem;
}
@media (min-width: 640px) {
  .blog-card-body { padding: 1.25rem 1.25rem 1.5rem; }
}
.blog-card-title {
  margin: 0.55rem 0 0;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #171717;
}
.blog-card-excerpt {
  margin: 0.65rem 0 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #525252;
}
.blog-card .blog-meta {
  color: #737373;
}
.blog-card .blog-read {
  margin-top: 1rem;
}
.blog-cta-strip {
  padding: 2.75rem 0;
  background:
    linear-gradient(90deg, #0d2b4b 0%, #1e3a5f 60%, hsl(var(--brand-dark)) 100%);
  color: #fff;
  text-align: center;
}
.blog-cta-strip h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.blog-cta-strip p {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.55;
}
.blog-cta-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  min-width: min(100%, 18rem);
  height: 3.25rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--brand));
  color: #fff !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: background 0.2s ease;
}
.blog-cta-strip a:hover {
  background: hsl(var(--brand-dark));
}

.blog-article-hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 0;
  background: #0d2b4b;
  color: #fff;
}
@media (min-width: 640px) {
  .blog-article-hero { padding-top: 9.5rem; }
}
.blog-article-hero-inner {
  max-width: none;
  margin: 0;
  padding: 0 0 2rem;
}
.blog-article-hero .blog-tag { margin-bottom: 0.75rem; }
.blog-article-hero h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.blog-article-hero .blog-meta {
  margin-top: 1.25rem;
}
.blog-article-cover {
  aspect-ratio: 21 / 9;
  max-height: 22rem;
  overflow: hidden;
}
.blog-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-article-body {
  padding: 2rem 0 3rem;
  background: #fff;
}
@media (min-width: 640px) {
  .blog-article-body { padding: 3rem 0 4rem; }
}
.blog-article-layout {
  display: grid;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .blog-article-layout {
    grid-template-columns: minmax(0, 1fr) 18.5rem;
    gap: 2.5rem;
    align-items: start;
  }
}
.blog-article-prose {
  max-width: none;
  min-width: 0;
  width: 100%;
}
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .blog-sidebar {
    position: sticky;
    top: 7.5rem;
  }
}
.blog-side-card {
  padding: 1.35rem 1.25rem;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
}
.blog-side-card h2 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #171717;
}
.blog-side-cta {
  background: #0d2b4b;
  border-color: #262626;
  color: #fff;
}
.blog-side-cta .blog-tag {
  margin-bottom: 0.65rem;
}
.blog-side-cta h2 {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
}
.blog-side-cta p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.65);
}
.blog-side-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 1.15rem;
  height: 3rem;
  border-radius: 0.4rem;
  background: hsl(var(--brand));
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: background 0.2s ease;
}
.blog-side-btn:hover {
  background: hsl(var(--brand-dark));
  color: #fff !important;
}
.blog-side-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.blog-side-cat {
  display: inline-block;
  padding: 0.4rem 0.65rem;
  border: 1px solid #d4d4d4;
  background: #fff;
  color: #404040 !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-bottom: 0 !important;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.blog-side-cat:hover,
.blog-side-cat.is-current {
  border-color: hsl(var(--brand));
  color: hsl(var(--brand)) !important;
}
.blog-side-posts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.blog-side-post {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.85rem 0;
  border-top: 1px solid #e5e5e5;
  text-decoration: none !important;
  border-bottom: 0 !important;
  color: inherit;
  transition: color 0.2s ease;
}
.blog-side-post:first-child {
  padding-top: 0;
  border-top: 0;
}
.blog-side-post strong {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  color: #171717;
}
.blog-side-post:hover strong {
  color: hsl(var(--brand));
}
.blog-side-meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #737373;
}
.blog-article-prose p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #404040;
}
.blog-article-prose p:first-child {
  font-size: 1.15rem;
  color: #262626;
}
.blog-article-prose h2 {
  margin: 2rem 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  color: #171717;
}
.blog-article-prose h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #171717;
}
.blog-article-prose ul {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
}
.blog-article-prose li {
  margin: 0.4rem 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #404040;
}
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: hsl(var(--brand));
  text-decoration: none !important;
  border-bottom: 0 !important;
}
.blog-article-call {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #0d2b4b;
  color: #fff;
}
.blog-article-call p {
  margin: 0;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.5;
}
.blog-article-call a {
  display: inline-flex;
  margin-top: 1rem;
  color: hsl(var(--brand)) !important;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

/* Testimonials */
.t-hero {
  padding: 9rem 0 3.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, hsl(var(--brand) / 0.18), transparent 55%),
    linear-gradient(180deg, #0d2b4b 0%, #1e3a5f 100%);
  color: #fff;
}
@media (min-width: 640px) {
  .t-hero { padding: 10rem 0 4rem; }
}
.t-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a3a3a3;
}
.t-crumbs a {
  color: #d4d4d4;
  text-decoration: none !important;
  border-bottom: 0 !important;
}
.t-crumbs a:hover { color: hsl(var(--brand)); }
.t-hero-title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.t-hero-title span {
  display: block;
  color: hsl(var(--brand));
}
.t-hero-lead {
  margin: 1.1rem 0 0;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.72);
}
.t-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
  max-width: 42rem;
}
.t-stat {
  padding: 1rem 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.04);
  text-align: center;
}
.t-stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.t-stat-stars {
  margin-top: 0.35rem;
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.t-stat-label {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a3a3a3;
}
.t-list {
  padding: 3.5rem 0 4.5rem;
  background: #f5f5f5;
}
.t-list-head {
  margin-bottom: 2rem;
  text-align: center;
}
.t-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.t-list-head h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #171717;
}
.t-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 720px) {
  .t-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .t-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.t-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.25rem;
  background: #fff;
  border: 1px solid #e5e5e5;
}
.t-stars {
  display: flex;
  gap: 0.15rem;
  color: #f59e0b;
}
.t-stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  stroke: currentColor;
}
.t-quote {
  margin: 0.9rem 0 1.15rem;
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #404040;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #ececec;
}
.t-avatar {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: #0d2b4b;
  color: hsl(var(--brand));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.t-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #171717;
}
.t-source {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #737373;
}
.t-cta {
  padding: 3.5rem 0;
  background: #0d2b4b;
  color: #fff;
  text-align: center;
}
.t-cta h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.t-cta p {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.7);
}
.t-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
  padding: 0.95rem 1.4rem;
  background: hsl(var(--brand));
  color: #fff !important;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  border-bottom: 0 !important;
}
.t-cta-phone:hover { filter: brightness(1.06); }
.t-cta-phone svg {
  width: 1.15rem;
  height: 1.15rem;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body { overflow-x: hidden; }

.hero-mobile-lead,
.hero-lead {
  display: block;
  margin: 1.15rem auto 0;
  max-width: 42rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.88);
  font-weight: 500;
}
@media (max-width: 639px) {
  .hero-mobile-lead,
  .hero-lead {
    display: block;
    margin: 1rem auto 0;
    max-width: 22.5rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: rgb(255 255 255 / 0.84);
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  main .max-w-3xl,
  main .max-w-2xl,
  main .max-w-6xl,
  main .max-w-xl,
  .t-cta p,
  .blog-shell {
    max-width: 100% !important;
  }

  main .rounded-2xl,
  main .rounded-xl,
  main .rounded-lg:not(.review-card),
  .t-card,
  .t-stat,
  .blog-card,
  .blog-featured-card,
  .blog-article-call,
  [data-faq-item] {
    width: 100%;
    max-width: 100%;
  }

  #services .grid,
  .t-grid,
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  #estimate-form .overflow-hidden.rounded-2xl,
  #estimate-form .bg-black {
    width: 100%;
  }

  .t-hero,
  .t-list,
  .t-cta,
  .blog-hero,
  .contact-call {
    padding-left: 0;
    padding-right: 0;
  }

  /* Consistent mobile CTAs only — do NOT force all flex rows to column */
  main a.brand-gradient,
  main a[href^="tel:"],
  .gbe-btn,
  .t-cta-phone,
  .contact-call-btn,
  .contact-call-phone,
  .blog-cta-strip a,
  .blog-side-btn,
  [data-callbar] a {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .gbe-cta-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* Hero trust badges: Licensed Network | BBB side by side */
  #top .hero-trust li.hero-trust-extra {
    display: none !important;
  }

  #top .hero-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.75rem;
    width: 100%;
    justify-items: center;
  }
  #top .hero-trust li {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    margin: 0;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  #top .hero-trust li svg {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
  }

  /* Why items: icon beside title, never stacked */
  #estimate-form .why-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
  }
  #estimate-form .why-item .why-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
  }
  #estimate-form .why-item h3 {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
  }

  /* Reviews: visible horizontal scroll on mobile */
  #reviews .reviews-track {
    display: flex !important;
    flex-direction: row !important;
    width: max-content !important;
    gap: 1rem;
    padding-left: 1rem;
    animation: reviews-scroll 45s linear infinite;
  }
  #reviews .review-card {
    width: min(86vw, 300px) !important;
    max-width: min(86vw, 300px) !important;
    min-width: min(86vw, 300px) !important;
    flex-shrink: 0 !important;
    background: #fff;
  }
  #reviews .group.relative {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  main img,
  .gbe-extra img {
    max-width: 100%;
    height: auto;
  }

  #root section,
  #root article,
  .gbe-extra,
  .gbe-reveal,
  .gbe-reveal-left {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  input,
  select,
  textarea,
  button {
    font-size: 16px !important; /* stop iOS zoom on focus */
  }
}

@media (max-width: 1023px) {
  .nav-panel-areas .nav-panel-inner {
    width: min(100vw - 1.5rem, 28rem);
  }
  .nav-areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Reviews animation (desktop + mobile) */
#reviews .reviews-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding-left: 1.5rem;
  animation: reviews-scroll 60s linear infinite;
}
#reviews .group:hover .reviews-track {
  animation-play-state: paused;
}
#reviews .review-card {
  background: #fff;
  border: 1px solid #e5e5e5;
}

/* Instagram profile embed (same pattern as gabestexterior.com) */
iframe[src*="instagram.com"][src*="/embed"] {
  display: block;
  width: 100%;
  min-height: 540px;
  height: 540px;
  border: 0;
  background: transparent;
}
@media (min-width: 768px) {
  iframe[src*="instagram.com"][src*="/embed"] {
    min-height: 680px;
    height: 680px;
  }
}

.wwf-section {
  background: #f4f4f5;
  padding: 4.5rem 0;
  color: #171717;
}
.wwf-head {
  max-width: 44rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.wwf-kicker {
  display: inline-block;
  color: hsl(var(--brand));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.wwf-head h2 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #171717;
  letter-spacing: -0.03em;
}
.wwf-head p {
  margin: 1rem auto 0;
  max-width: 38rem;
  color: #525252;
  font-size: 1.08rem;
  line-height: 1.7;
}
.wwf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.wwf-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 1.15rem;
  padding: 1.7rem 1.45rem 1.5rem;
  box-shadow: 0 10px 28px rgba(16, 20, 30, 0.05);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wwf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 20, 30, 0.1);
}
.wwf-icon {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 0.9rem;
  background: hsl(var(--brand) / 0.12);
  color: hsl(var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.wwf-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  display: block;
}
.wwf-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #171717;
  line-height: 1.25;
}
.wwf-card p {
  margin: 0 0 1.15rem;
  color: #525252;
  font-size: 0.98rem;
  line-height: 1.6;
  flex: 1;
}
.wwf-card a {
  color: hsl(var(--brand));
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
}
.wwf-card a:hover {
  color: hsl(var(--brand-dark, 25 99% 32%));
}
.wwf-cta {
  margin-top: 2.25rem;
  text-align: center;
}
.wwf-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.6rem;
  border-radius: 0.5rem;
  background: hsl(var(--brand));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 24px hsl(var(--brand) / 0.28);
}
.wwf-cta a:hover {
  filter: brightness(1.05);
}
@media (min-width: 700px) {
  .wwf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .wwf-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .wwf-card {
    padding: 1.85rem 1.5rem 1.55rem;
  }
}

/* Contact page: nationwide states showcase */
.contact-findus-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.contact-us-flag {
  display: inline-block;
  width: 1.15rem;
  height: 0.62rem;
  flex-shrink: 0;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(13, 43, 75, 0.1);
  vertical-align: middle;
}
.contact-states-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  max-width: 64rem;
  margin: 1.75rem auto 0;
}
.contact-states-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: min(100%, 20rem);
  padding: 0.55rem 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  background: #fff;
}
.contact-states-search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: inherit;
}
.contact-states-search input::placeholder {
  color: #737373;
  font-weight: 500;
}
.contact-states-count {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: hsl(var(--brand));
}
.contact-states {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 1.25rem auto 0;
}
.contact-region {
  padding: 0;
  border: 0;
  background: transparent;
}
.contact-region-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--brand));
}
.contact-region-title em {
  margin-left: auto;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: #737373;
}
.contact-state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.contact-state {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
}
.contact-state:hover,
.contact-state:focus-visible {
  border-color: hsl(var(--brand));
  outline: none;
}
.contact-state-name {
  line-height: 1.2;
}
.contact-state[hidden],
.contact-region[hidden] {
  display: none !important;
}
@media (min-width: 700px) {
  .contact-state-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .contact-state-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
