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

:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: #161616;
  --gold: #d5a53f;
  --gold-light: #f0cc73;
  --text: #f6f2e9;
  --muted: #aaa59b;
  --line: rgba(255, 255, 255, 0.09);
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 9, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.84rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
}

.main-nav a {
  color: #d5d0c8;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.nav-cta {
  border: 1px solid rgba(213, 165, 63, 0.65);
  padding: 10px 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: white;
  display: block;
  margin: 5px 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 135px 0 90px;
  background:
    radial-gradient(circle at 72% 30%, rgba(213, 165, 63, 0.08), transparent 30%),
    linear-gradient(145deg, #080808, #101010 55%, #070707);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
  z-index: -2;
}

.glow-one {
  width: 380px;
  height: 380px;
  background: var(--gold);
  right: -120px;
  top: 150px;
}

.glow-two {
  width: 220px;
  height: 220px;
  background: #715827;
  left: -100px;
  bottom: 80px;
}

.hero-content {
  max-width: 1020px;
}

.eyebrow,
.section-label {
  color: var(--gold-light);
  letter-spacing: 0.2em;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  max-width: 1000px;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-copy {
  max-width: 710px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.23rem);
  margin: 30px 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(213, 165, 63, 0.22);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  padding: 21px 22px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: 110px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lead {
  font-size: 1.28rem;
  color: #e2ddd4;
  margin-bottom: 22px;
}

.about p:not(.section-label) {
  color: var(--muted);
}

.services {
  background: var(--bg-soft);
}

.services h2 {
  max-width: 760px;
}

.cards {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  min-height: 250px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(213, 165, 63, 0.5);
}

.card-number {
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.45rem;
  margin: 44px 0 12px;
}

.card p {
  color: var(--muted);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}

.section-note {
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.project {
  border: 1px solid var(--line);
  background: #101010;
  overflow: hidden;
}

.project-large {
  grid-row: span 2;
}

.project-art {
  min-height: 260px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 24px;
  overflow: hidden;
}

.project-large .project-art {
  min-height: 570px;
}

.project-art::before,
.project-art::after {
  content: "";
  position: absolute;
  inset: 0;
}

.project-art::before {
  background:
    linear-gradient(135deg, transparent 30%, rgba(255,255,255,.08)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 50px);
}

.project-art::after {
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent 58%);
}

.art-one {
  background:
    radial-gradient(circle at 75% 28%, rgba(240,204,115,.46), transparent 18%),
    linear-gradient(145deg, #1d1609, #080808 68%);
}

.art-two {
  background:
    radial-gradient(circle at 35% 35%, rgba(213,165,63,.25), transparent 23%),
    linear-gradient(135deg, #111, #21190c);
}

.art-three {
  background:
    radial-gradient(circle at 70% 70%, rgba(213,165,63,.2), transparent 20%),
    linear-gradient(135deg, #0d0d0d, #17120a);
}

.project-art span {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.project-info p {
  color: var(--muted);
}

.contact {
  padding-top: 60px;
}

.contact-panel {
  border: 1px solid var(--line);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  background:
    radial-gradient(circle at 90% 10%, rgba(213,165,63,.12), transparent 30%),
    #111;
}

.contact-panel p {
  color: var(--muted);
  margin-top: 18px;
  max-width: 660px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.text-link {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(213,165,63,.35);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 35px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-end;
}

.site-footer strong {
  font-family: "Montserrat", sans-serif;
  letter-spacing: .08em;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: .85rem;
}

.footer-right {
  text-align: right;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #0d0d0d;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    border: 0;
  }

  .split,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .cards,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-row: auto;
  }

  .project-large .project-art {
    min-height: 360px;
  }

  .section-heading-row,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .brand-text {
    font-size: .82rem;
  }

  .section {
    padding: 80px 0;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .contact-panel {
    padding: 32px 24px;
  }

  .btn {
    width: 100%;
  }
}
