.brand-logo {
  display: block;
  width: auto;
  height: 68px;
  max-width: min(390px, 48vw);
  object-fit: contain;
}

.site-header .brand {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.site-header.scrolled .brand-logo {
  height: 56px;
}

footer .brand-logo {
  height: 84px;
  max-width: min(440px, 82vw);
  padding: 0;
  background: transparent;
}

@media (max-width: 760px) {
  .brand-logo {
    height: 52px;
    max-width: 62vw;
  }

  footer .brand-logo {
    height: 68px;
    max-width: 82vw;
  }
}

.contact-email {
  display: block;
  width: fit-content;
  margin: 18px 0 12px;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(197, 164, 109, 0.55);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form h3 { margin-bottom: 4px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 600; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; padding: 13px 14px; font: inherit; outline: none; transition: border-color .2s, background .2s; }
.contact-form select option { color: #111923; background: #fff; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,.12); }
.contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form .btn { border-radius: 10px; cursor: pointer; margin-top: 4px; }
.form-success { display: none; margin: 0; padding: 12px 14px; border-radius: 10px; color: #d9f4de; background: rgba(62,154,82,.2); border: 1px solid rgba(115,210,136,.35); }
.form-success:target { display: block; }

.site-credit { display: block; margin-top: 8px; color: rgba(255,255,255,.58); }
.site-credit a { color: var(--gold); font-weight: 700; border-bottom: 1px solid rgba(197,164,109,.45); }

@media (max-width: 640px) {
  .contact-form .form-row { grid-template-columns: 1fr; }
}
