/* Footer, ported from React Footer.tsx.
   Global (not scoped .cshtml.css): the asp-page AnchorTagHelper strips the
   CSS-isolation scope attribute, so scoped partial CSS does not reach
   tag-helper links. All refresh chrome uses global rf- prefixed CSS. */
.rf-foot {
    padding: 40px 0 32px;
    background: #1A1A1A;
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.rf-foot__top {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}
.rf-foot__brand { flex-shrink: 0; }
.rf-foot__logo {
    display: inline-block;
    margin-bottom: 16px;
    opacity: .9;
    transition: opacity .3s ease;
}
.rf-foot__logo:hover { opacity: 1; }
.rf-foot__logo img { height: 48px; width: auto; object-fit: contain; }
.rf-foot__blurb {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.6;
}
.rf-foot__links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rf-foot__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 16px;
}
.rf-foot__label {
    width: 84px;
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .55);
}
.rf-foot__link {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    transition: color .2s ease;
}
.rf-foot__link:hover { color: rgba(255, 255, 255, .85); }
/* Mobile tap targets: the 21px link rows are under the 44px comfortable
   minimum; padding grows the hit area without changing the visual weight. */
@media (max-width: 767px) {
  /* Label on its own line so each row reads as a scannable group, not one
     continuous tag cloud; link hit area up to 45px. */
  .rf-foot__label { width: 100%; margin-bottom: 2px; }
  .rf-foot__link { display: inline-block; padding-block: 12px; }
  .rf-foot__row { gap: 0 16px; }
}

.rf-foot__bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.rf-foot__copy { font-size: 13px; color: rgba(255, 255, 255, .25); }
.rf-foot__privacy {
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
    font-weight: 500;
    transition: color .2s ease;
}
.rf-foot__privacy:hover { color: rgba(255, 255, 255, .5); }

@media (min-width: 768px) {
    .rf-foot__bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) {
    .rf-foot { padding-inline: 0; }
    .rf-foot__top { flex-direction: row; align-items: flex-start; gap: 48px; }
    .rf-foot__brand { max-width: 280px; }
}

@media (max-width: 767px) {
  .rf-foot__privacy { display: inline-block; padding-block: 12px; }
}

/* Direct contact block (audit CONV-M01). Real published values from the live
   architectnow.net site: tap-to-call + mailto so phone visitors always have a
   native path. */
.rf-foot__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    margin-top: 16px;
}
.rf-foot__contact a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    transition: color .2s ease;
}
.rf-foot__contact a:hover { color: rgba(255, 255, 255, .9); }
@media (max-width: 767px) {
    .rf-foot__contact { flex-direction: column; gap: 0; }
    .rf-foot__contact a { display: inline-block; padding-block: 12px; }
}
