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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  background: #050608;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6a15a, #f1d58c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111217;
  font-weight: 700;
  font-size: 0.85rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.logo-tagline {
  font-size: 0.7rem;
  color: #a0a0a0;
}

.nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.85rem;
}

.nav a {
  color: #d3d3d3;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background: #d6a15a;
  transition: width 0.18s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

/* SECTIONS */
.section {
  padding: 3.8rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #14141b, #050608);
}

.section-head h2 {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.section-intro {
  max-width: 520px;
  color: #b8b8b8;
  font-size: 0.95rem;
}

/* HERO */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at top left, #262331, #050608);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: #c9aa70;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin: 0.6rem 0 0.5rem;
}

.hero-sub {
  color: #d0d0d0;
  max-width: 540px;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.2rem 0 0.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #a9a9a9;
}

.hero-photo {
  display: flex;
  justify-content: flex-end;
}

.hero-photo-frame {
  width: 100%;
  max-width: 320px;
  border-radius: 22px;
  padding: 0.5rem;
  background: radial-gradient(circle at top, #2b2530, #090a0d);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  position: relative;
}

.hero-photo-frame img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.hero-photo-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(4, 5, 7, 0.92);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  border: 1px solid rgba(214, 161, 90, 0.7);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease-out, transform 0.08s ease-out,
    box-shadow 0.18s ease-out, border-color 0.18s ease-out, color 0.18s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, #d6a15a, #f2d38a);
  color: #141318;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85);
}

.btn.ghost {
  background: #14141b;
  border-color: #343640;
  color: #f3f3f3;
}

.btn.ghost:hover {
  border-color: #d6a15a;
}

/* LAYOUT HELPERS */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* VITALS */
.vitals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1rem;
  border-radius: 14px;
  background: #111118;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-label {
  font-size: 0.8rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-value {
  display: block;
  margin-top: 0.4rem;
  font-size: 1rem;
}

.vitals-extra {
  margin-top: 1.2rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(214, 161, 90, 0.55);
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  color: #f2e2c7;
}

/* VIBES */
.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.vibe-column h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.vibe-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: #d2d2d2;
}

.vibe-column li {
  margin-bottom: 0.3rem;
}

/* CARDS */
.card {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  background: #12121a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.card.emphasis {
  background: radial-gradient(circle at top, #221a20, #101019);
}

.card.subtle {
  background: #111118;
}

/* FLAGS */
.flag-list {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.flag {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  background: #101017;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.flag.green {
  border-color: rgba(151, 223, 151, 0.5);
}

.flag.red {
  border-color: rgba(232, 93, 93, 0.6);
}

.flag-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 0.3rem;
}

.flag.green .flag-dot {
  background: #79d97c;
}

.flag.red .flag-dot {
  background: #ff5c66;
}

.flag h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
}

.flag p {
  margin: 0;
  font-size: 0.85rem;
  color: #c9c9c9;
}

/* LEVELS */
.levels {
  margin-top: 1.6rem;
  display: grid;
  gap: 1rem;
}

.level {
  padding: 1rem;
  border-radius: 14px;
  background: #101018;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}

.level-tag {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  background: #050608;
  border: 1px solid rgba(214, 161, 90, 0.8);
}

.level h3 {
  margin-top: 0.6rem;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.level p {
  font-size: 0.9rem;
}

.small {
  font-size: 0.78rem;
  color: #a6a6a6;
}

/* CONTACT */
.contact-grid {
  align-items: stretch;
}

.contact-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.openers {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0.7rem;
  font-size: 0.88rem;
}

.openers li {
  margin-bottom: 0.3rem;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 0 1.3rem;
  background: #040408;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #9b9b9b;
}

.footer-meta {
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    justify-content: flex-start;
  }

  .hero-photo-frame {
    max-width: 260px;
    margin-top: 1.3rem;
  }
}