:root {
  --bg-dark: #050505;
  --bg-card: #111111;
  --text-light: #ffffff;
  --text-muted: #d0d0d0;
  --gold: #c7a44b;
}

html {
  scroll-behavior: smooth;
  background: #050505;
}

body {
  margin: 0;
  background: #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;

  background-color: #050505;
  background-image: url("../images/hero-city.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.65) 48%,
    rgba(0, 0, 0, 0.90) 100%
  );
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 20;
}

.navbar-brand {
  color: #ffffff;
  text-decoration: none;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: #ffffff;
}

.brand-mark {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15rem;
}

.brand-name {
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
}

.nav-link {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.88rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold);
}

.contact-btn {
  border-radius: 999px;
  padding-inline: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16rem;
  font-weight: 600;
}

.hero-title {
  max-width: 850px;
  margin: 0;
  color: #ffffff;

  font-size: clamp(3.2rem, 7vw, 7.5rem);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.hero-title span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  color: #e0e0e0;
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions .btn {
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
}


/* =========================
   WORK
   ========================= */

.work-section {
  background: #050505;
  color: #ffffff;
}

.section-label {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
}

.work-section h2 {
  color: #ffffff;
}

.work-card {
  position: relative;
  min-height: 290px;
  padding: 2rem;

  background: #111111;
  color: #ffffff;
  border: 1px solid #333333;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: #555555;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.35);
}

.work-number {
  display: block;
  margin-bottom: 2.5rem;
  color: #a5a5a5;
  font-size: 0.75rem;
}

.work-card h3 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
}

.work-card p {
  color: #d0d0d0;
  line-height: 1.7;
}

.work-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.work-card a:hover,
.work-card a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.featured-card {
  background: #181818;
  color: #ffffff;
  border-color: var(--gold);
}

.featured-card p,
.featured-card .work-number {
  color: #d0d0d0;
}

.featured-card a {
  color: var(--gold);
}


/* =========================
   ABOUT
   ========================= */

.about-section {
  background: #111111;
  color: #ffffff;
}

.about-section h2 {
  color: #ffffff;
}

.about-section .section-label {
  color: var(--gold);
}

.about-section p:not(.section-label) {
  color: #d0d0d0;
  line-height: 1.8;
}


/* =========================
   CONTACT
   ========================= */

.contact-section {
  background: var(--gold);
  color: #111111;
}

.contact-section .section-label,
.contact-section h2,
.contact-section p {
  color: #111111;
}

.contact-section .btn {
  border-radius: 999px;
  padding-inline: 2rem;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: #050505;
  color: #b8b8b8;
  border-top: 1px solid #222222;
}


/* =========================
   ACCESSIBILITY
   ========================= */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: #111111;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 991px) {
  .hero {
    background-position: 35% center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.78);
  }

  .hero-content {
    padding-top: 6rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid #333333;
  }

  .nav-link {
    padding-block: 0.75rem;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-copy {
    font-size: 1rem;
  }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    margin-right: 0 !important;
  }

  .work-card {
    min-height: auto;
  }
}
