/* ============================================================
   Lion Pike — Shared Stylesheet
   ============================================================ */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Base */
body {
  margin: 0;
  background: #0a0a0a;
  color: #f4f1eb;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

/* Background watermark */
.bg-mark {
  position: fixed;
  bottom: -5%;
  right: -2%;
  font-size: 28vw;
  font-weight: 700;
  color: rgba(184,151,42,0.035);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.05em;
}

/* Layout */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Top gold bar */
.top-bar {
  height: 2px;
  background: linear-gradient(90deg, transparent, #b8972a, transparent);
}

/* Header */
header {
  padding: 2.5rem 0;
  border-bottom: 1px solid transparent;
  background-image: linear-gradient(to right, transparent, rgba(184,151,42,0.4), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.logo-name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4f1eb;
  text-decoration: none;
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #b8972a;
  text-transform: uppercase;
}

/* Nav */
nav a {
  color: rgba(244,241,235,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

nav a:hover {
  color: #b8972a;
}

/* Eyebrow label */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: #b8972a;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(184,151,42,0.2);
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(244,241,235,0.35);
  display: flex;
  justify-content: space-between;
}

.footer-tagline {
  color: rgba(184,151,42,0.5);
}

/* Autofill override */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #f4f1eb;
  -webkit-box-shadow: 0 0 0px 1000px #0a0a0a inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* Mobile */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  footer {
    flex-direction: column;
    gap: 0.5rem;
  }

  .bg-mark {
    display: none;
  }
}
