/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --bg-dark: #0f0f0f;
  --border: rgba(255,255,255,0.18);
  --text-main: rgba(255,255,255,0.95);
  --text-muted: rgba(255,255,255,0.75);
  --gold: #d4af37;
}

/* HEADER */
.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

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

.brand-name {
  font-size: 23px;
  font-weight: 600;
  color: var(--text-main);
}

.brand-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* CONTACT */
.header-actions {
  display: flex;
  gap: 30px;
}

.header-actions a {
  font-size: 18px;
  color: var(--text-main);
  text-decoration: none;
  white-space: nowrap;
}

.header-actions a:hover {
  text-decoration: underline;
}

/* HERO */
.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-mobile {
  display: none;
}

/* FOOTER (Option 2 layout, no white gap) */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  /* IMPORTANT: no margin-top, so no white strip */
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 22px 32px;
  font-size: 18px;
  color: var(--text-muted);
}

/* Subtle emphasis control (keeps your original font size) */
.footer-left  { opacity: 0.80; }
.footer-center{ opacity: 0.92; text-align: center; }
.footer-right { opacity: 0.65; text-align: right; }

/* MOBILE */
@media (max-width: 768px) {

  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px 20px;
  }

  .brand {
    justify-content: center;
  }

  .header-actions {
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 10px;
  }

  .logo {
    font-size: 22px;
    padding: 6px 10px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 12px;
  }

  .header-actions a {
    font-size: 13px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    font-size: 13px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }
}
