/* ============================================================
   Hollifield brand system
   Marks:  logo-mark.svg (primary H) | logo-h.svg (same) | logo-h-house.svg
   Type:   logo-wordmark.svg (dark on light) | logo-wordmark-light.svg
   Full:   logo.svg (icon + wordmark, light backgrounds)
   ============================================================ */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  line-height: 1.12;
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--white); }

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.logo-mark img,
.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.logo-text strong {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1;
}
.logo-text span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b7c7d6;
  font-style: normal;
}

/* Text-only brand (no mark) */
.logo.logo-text-only .logo-mark { display: none; }
.logo.logo-text-only .logo-text strong {
  font-size: 1.35rem;
}
.logo.logo-text-only .logo-text span {
  color: #ffb877;
}

/* Icon-only brand */
.logo.logo-icon-only .logo-text { display: none; }
.logo.logo-icon-only .logo-mark {
  width: 48px;
  height: 48px;
}

/* Full SVG lockup (about / marketing) */
.brand-lockup {
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
}
.about-logo-lockup {
  margin-bottom: 12px;
  max-width: 380px;
}
.about-logo-lockup img,
.about-logo-lockup .brand-lockup {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--sand-line);
  padding: 22px 26px;
  box-shadow: 0 8px 24px rgba(14, 42, 71, 0.08);
}
.about-logo-note {
  color: var(--gray-text);
  margin-bottom: 24px !important;
  font-size: 0.95rem;
}

/* Footer brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand .logo-mark {
  width: 44px;
  height: 44px;
  box-shadow: none;
}
.footer-brand h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 1.1rem;
}
.footer-brand small {
  display: block;
  color: #8aa2b8;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}

/* Brand showcase row (about page) */
.brand-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.brand-card {
  background: #fff;
  border: 1px solid var(--sand-line);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(14, 42, 71, 0.06);
}
.brand-card img {
  width: auto;
  max-width: 100%;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}
.brand-card.dark {
  background: var(--navy);
  border-color: transparent;
}
.brand-card h4 {
  font-size: 0.85rem;
  color: var(--navy);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.brand-card.dark h4 { color: #fff; }
.brand-card p {
  font-size: 0.82rem;
  color: var(--gray-text);
  margin: 0;
}
.brand-card.dark p { color: #9fb8cd; }

@media (max-width: 640px) {
  .logo-mark { width: 40px; height: 40px; }
  .logo-text strong { font-size: 1.05rem; }
  .logo-text span { font-size: 0.58rem; letter-spacing: 0.1em; }
  .brand-showcase { grid-template-columns: 1fr; }
}
